浏览代码

moved new teams page

Torkel Ödegaard 7 年之前
父节点
当前提交
17386c49d4

+ 1 - 0
public/app/features/all.ts

@@ -9,3 +9,4 @@ import './admin';
 import './alerting/NotificationsEditCtrl';
 import './alerting/NotificationsListCtrl';
 import './manage-dashboards';
+import './teams/CreateTeamCtrl';

+ 0 - 1
public/app/features/org/all.ts

@@ -3,4 +3,3 @@ import './select_org_ctrl';
 import './change_password_ctrl';
 import './new_org_ctrl';
 import './user_invite_ctrl';
-import './create_team_ctrl';

+ 0 - 0
public/app/features/org/create_team_ctrl.ts → public/app/features/teams/CreateTeamCtrl.ts


+ 0 - 0
public/app/features/org/partials/create_team.html → public/app/features/teams/partials/create_team.html


+ 1 - 1
public/app/routes/routes.ts

@@ -167,7 +167,7 @@ export function setupAngularRoutes($routeProvider, $locationProvider) {
       },
     })
     .when('/org/teams/new', {
-      templateUrl: 'public/app/features/org/partials/create_team.html',
+      templateUrl: 'public/app/features/teams/partials/create_team.html',
       controller: 'CreateTeamCtrl',
       controllerAs: 'ctrl',
     })