mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-09 06:31:22 +00:00
GUAC-1053: Create connection/group management tab.
This commit is contained in:
@@ -317,7 +317,7 @@ angular.module('manage').controller('manageConnectionController', ['$scope', '$i
|
||||
* Cancels all pending edits, returning to the management page.
|
||||
*/
|
||||
$scope.cancel = function cancel() {
|
||||
$location.path('/manage/modules/connections/');
|
||||
$location.path('/settings/connections');
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -339,7 +339,7 @@ angular.module('manage').controller('manageConnectionController', ['$scope', '$i
|
||||
// Save the connection
|
||||
connectionService.saveConnection($scope.connection)
|
||||
.success(function savedConnection() {
|
||||
$location.path('/manage/modules/connections/');
|
||||
$location.path('/settings/connections');
|
||||
})
|
||||
|
||||
// Notify of any errors
|
||||
@@ -389,7 +389,7 @@ angular.module('manage').controller('manageConnectionController', ['$scope', '$i
|
||||
// Delete the connection
|
||||
connectionService.deleteConnection($scope.connection)
|
||||
.success(function deletedConnection() {
|
||||
$location.path('/manage/modules/connections/');
|
||||
$location.path('/settings/connections');
|
||||
})
|
||||
|
||||
// Notify of any errors
|
||||
|
Reference in New Issue
Block a user