mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 09:03:21 +00:00 
			
		
		
		
	GUAC-932: Rename various *DAO to *Service. Rename legacy services to legacy*, pending removal/refactor.
This commit is contained in:
		| @@ -132,8 +132,8 @@ angular.module('home').controller('clientController', ['$scope', '$routeParams', | ||||
|         remaining: 15 | ||||
|     }; | ||||
|      | ||||
|     // Get DAO for reading connections and groups | ||||
|     var connectionGroupDAO = $injector.get('connectionGroupDAO'); | ||||
|     // Get services for reading connections and groups | ||||
|     var connectionGroupService = $injector.get('connectionGroupService'); | ||||
|     var connectionService  = $injector.get('connectionService'); | ||||
|     var ClientProperties   = $injector.get('ClientProperties'); | ||||
|  | ||||
| @@ -176,7 +176,7 @@ angular.module('home').controller('clientController', ['$scope', '$routeParams', | ||||
|  | ||||
|         // Connection group | ||||
|         case 'g': | ||||
|             connectionGroupDAO.getConnectionGroup($routeParams.id).success(function (group) { | ||||
|             connectionGroupService.getConnectionGroup($routeParams.id).success(function (group) { | ||||
|                 $scope.connectionName = $scope.page.title = group.name; | ||||
|             }); | ||||
|             break; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user