Add route and page to enable experiment

This commit is contained in:
Ian Minoso 2016-09-20 17:10:09 -04:00
parent 24327f4964
commit 4dd6166d21
4 changed files with 35 additions and 2 deletions

View file

@ -204,6 +204,9 @@ quayApp.config(['$routeProvider', '$locationProvider', 'pages', function($routeP
// Enterprise marketing page
.route('/enterprise', 'enterprise')
// Public Repo Experiments
.route('/__exp/publicRepo', 'public-repo-exp')
// Default: Redirect to the landing page
.otherwise({redirectTo: '/'});
}]);