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 for creating a new organization.
|
||||
*/
|
||||
angular.module('quayPages').config(['pages', function(pages) {
|
||||
pages.create('new-organization', 'new-organization.html', NewOrgCtrl);
|
||||
pages.create('new-organization', 'new-organization.html', NewOrgCtrl, {
|
||||
'title': 'New Organization',
|
||||
'description': 'Create a new organization to manage teams and permissions'
|
||||
});
|
||||
}]);
|
||||
|
||||
function NewOrgCtrl($scope, $routeParams, $timeout, $location, UserService, PlanService, ApiService, CookieService, Features) {
|
||||
|
|
Reference in a new issue