mirror of https://github.com/portainer/portainer
38 lines
958 B
JavaScript
38 lines
958 B
JavaScript
import { browseGetResponse } from '../response/browse';
|
|
|
|
angular.module('portainer.agent').factory('BrowseVersion1', [
|
|
'$resource',
|
|
'API_ENDPOINT_ENDPOINTS',
|
|
'EndpointProvider',
|
|
function BrowseFactory($resource, API_ENDPOINT_ENDPOINTS, EndpointProvider) {
|
|
'use strict';
|
|
return $resource(
|
|
API_ENDPOINT_ENDPOINTS + '/:endpointId/docker/browse/:volumeID/:action',
|
|
{
|
|
endpointId: EndpointProvider.endpointID,
|
|
},
|
|
{
|
|
ls: {
|
|
method: 'GET',
|
|
isArray: true,
|
|
params: { action: 'ls' },
|
|
},
|
|
get: {
|
|
method: 'GET',
|
|
params: { action: 'get' },
|
|
transformResponse: browseGetResponse,
|
|
responseType: 'arraybuffer',
|
|
},
|
|
delete: {
|
|
method: 'DELETE',
|
|
params: { action: 'delete' },
|
|
},
|
|
rename: {
|
|
method: 'PUT',
|
|
params: { action: 'rename' },
|
|
},
|
|
}
|
|
);
|
|
},
|
|
]);
|