GUACAMOLE-5: Implement management of sharing profiles.

This commit is contained in:
Michael Jumper
2016-08-07 23:50:41 -07:00
parent 726613cbc8
commit db02d9a7fb
9 changed files with 558 additions and 0 deletions

View File

@@ -137,6 +137,15 @@ angular.module('index').config(['$routeProvider', '$locationProvider',
resolve : { updateCurrentToken: updateCurrentToken }
})
// Sharing profile editor
.when('/manage/:dataSource/sharingProfiles/:id?', {
title : 'APP.NAME',
bodyClassName : 'manage',
templateUrl : 'app/manage/templates/manageSharingProfile.html',
controller : 'manageSharingProfileController',
resolve : { updateCurrentToken: updateCurrentToken }
})
// Connection group editor
.when('/manage/:dataSource/connectionGroups/:id?', {
title : 'APP.NAME',