You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/PlexRequests.UI/Content/app/userManagement/userManagementService.js

31 lines
779 B

8 years ago
(function () {
var userManagementService = function ($http) {
$http.defaults.headers.common['Content-Type'] = 'application/x-www-form-urlencoded'; // Set default headers
8 years ago
var getUsers = function () {
return $http.get('/usermanagement/users');
};
var addUser = function (user) {
if (!user) {
return null;
}
8 years ago
return $http({
8 years ago
url: '/usermanagement/createuser',
method: "POST",
data: $.param(user)
8 years ago
});
}
return {
getUsers: getUsers,
addUser: addUser
};
}
angular.module('PlexRequests').factory('userManagementService', ["$http", userManagementService]);
}());