Projects can now be added to a Team and created from the Team tab.

This commit is contained in:
chouseknecht
2013-05-23 11:52:45 -04:00
parent ab4115d0e7
commit 151f02e92c
2 changed files with 19 additions and 9 deletions

View File

@@ -168,6 +168,15 @@ angular.module('ansible', [
when('/teams/:team_id/users/:user_id', { templateUrl: urlPrefix + 'partials/teams.html',
controller: UsersEdit }).
when('/teams/:team_id/projects', { templateUrl: urlPrefix + 'partials/teams.html',
controller: ProjectsList }).
when('/teams/:team_id/projects/add', { templateUrl: urlPrefix + 'partials/teams.html',
controller: ProjectsAdd }).
when('/teams/:team_id/projects/:project_id', { templateUrl: urlPrefix + 'partials/teams.html',
controller: ProjectsEdit }).
when('/teams/:team_id/credentials', { templateUrl: urlPrefix + 'partials/teams.html',
controller: CredentialsList }).