1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00
portainer/app/azure/rest/subscription.js

18 lines
512 B
JavaScript

angular.module('portainer.azure').factory('Subscription', [
'$resource',
'API_ENDPOINT_ENDPOINTS',
'EndpointProvider',
function SubscriptionFactory($resource, API_ENDPOINT_ENDPOINTS, EndpointProvider) {
'use strict';
return $resource(
API_ENDPOINT_ENDPOINTS + '/:endpointId/azure/subscriptions/:id',
{
endpointId: EndpointProvider.endpointID,
'api-version': '2016-06-01',
},
{
get: { method: 'GET', params: { id: '@id' } },
}
);
},
]);