1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00
portainer/app/rest/api/auth.js

10 lines
249 B
JavaScript
Raw Normal View History

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'
}
});
}]);