mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
angular.module('portainer.rest')
 | 
						|
.factory('Image', ['$resource', 'Settings', function ImageFactory($resource, Settings) {
 | 
						|
  'use strict';
 | 
						|
  return $resource(Settings.url + '/images/:id/:action', {}, {
 | 
						|
    query: {method: 'GET', params: {all: 0, action: 'json'}, isArray: true},
 | 
						|
    get: {method: 'GET', params: {action: 'json'}},
 | 
						|
    search: {method: 'GET', params: {action: 'search'}},
 | 
						|
    history: {method: 'GET', params: {action: 'history'}, isArray: true},
 | 
						|
    insert: {method: 'POST', params: {id: '@id', action: 'insert'}},
 | 
						|
    tag: {method: 'POST', params: {id: '@id', action: 'tag', force: 0, repo: '@repo', tag: '@tag'}},
 | 
						|
    inspect: {method: 'GET', params: {id: '@id', action: 'json'}},
 | 
						|
    push: {
 | 
						|
      method: 'POST', params: {action: 'push', id: '@tag'},
 | 
						|
      isArray: true, transformResponse: jsonObjectsToArrayHandler
 | 
						|
    },
 | 
						|
    create: {
 | 
						|
      method: 'POST', params: {action: 'create', fromImage: '@fromImage', tag: '@tag'},
 | 
						|
      isArray: true, transformResponse: jsonObjectsToArrayHandler
 | 
						|
    },
 | 
						|
    remove: {
 | 
						|
      method: 'DELETE', params: {id: '@id'},
 | 
						|
      isArray: true, transformResponse: deleteImageHandler
 | 
						|
    }
 | 
						|
  });
 | 
						|
}]);
 |