GUAC-586: Specify data source when querying available user attributes.

This commit is contained in:
Michael Jumper
2015-08-31 00:14:44 -07:00
parent 0f661dfec3
commit 09fd512571

View File

@@ -322,7 +322,7 @@ angular.module('manage').controller('manageUserController', ['$scope', '$injecto
};
// Pull user attribute schema
schemaService.getUserAttributes().success(function attributesReceived(attributes) {
schemaService.getUserAttributes(dataSource).success(function attributesReceived(attributes) {
$scope.attributes = attributes;
});