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