Add titles and descriptions to the pages
This commit is contained in:
parent
078f9c206f
commit
b66551ec48
15 changed files with 50 additions and 15 deletions
|
@ -3,7 +3,10 @@
|
|||
* Page to create a new repository.
|
||||
*/
|
||||
angular.module('quayPages').config(['pages', function(pages) {
|
||||
pages.create('new-repo', 'new-repo.html', NewRepoCtrl);
|
||||
pages.create('new-repo', 'new-repo.html', NewRepoCtrl, {
|
||||
'title': 'New Repository',
|
||||
'description': 'Create a new Docker repository'
|
||||
});
|
||||
}]);
|
||||
|
||||
function NewRepoCtrl($scope, $location, $http, $timeout, UserService, ApiService, PlanService, TriggerService, Features) {
|
||||
|
|
Reference in a new issue