mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
9 lines
249 B
JavaScript
9 lines
249 B
JavaScript
angular.module('portainer.rest')
|
|
.factory('Auth', ['$resource', 'API_ENDPOINT_AUTH', function AuthFactory($resource, API_ENDPOINT_AUTH) {
|
|
'use strict';
|
|
return $resource(API_ENDPOINT_AUTH, {}, {
|
|
login: {
|
|
method: 'POST'
|
|
}
|
|
});
|
|
}]);
|