Remove out dated Enterprise landing page

We now just redirect to the QE plans page

Fixes https://www.pivotaltracker.com/story/show/142166263
This commit is contained in:
Joseph Schorr 2017-03-30 15:25:56 -04:00
parent 3a72a8ef9c
commit 147b812edb
4 changed files with 1 additions and 360 deletions

View file

@ -1,18 +0,0 @@
(function() {
/**
* Enterprise marketing page.
*/
angular.module('quayPages').config(['pages', function(pages) {
pages.create('enterprise', 'enterprise.html', EnterpriseCtrl, {
'title': 'Quay Enterprise',
'description': 'Quay Enterprise'
});
function EnterpriseCtrl($scope, $location, UserService, PlanService, $routeParams) {
$scope.qeStartTrial = function(plan) {
$scope.currentQEPlan = plan;
$('#tectonicManagerDialog').modal('show');
};
}
}]);
}());

View file

@ -131,9 +131,6 @@ export class QuayRoutes {
// Confirm Invite
.route('/confirminvite', 'confirm-invite')
// Enterprise marketing page
.route('/enterprise', 'enterprise')
// Public Repo Experiments
.route('/__exp/publicRepo', 'public-repo-exp')