Sha256: 225423d8d7765d10003e23111508d0f5e85b1b89f9b780a69a2e3e4101b7ca5c
Contents?: true
Size: 923 Bytes
Versions: 137
Compression:
Stored size: 923 Bytes
Contents
/** * @ngdoc service * @name Bastion.docker-tags.factory:DockerTag * * @requires BastionResource * * @description * Provides a BastionResource for Docker Tags */ angular.module('Bastion.docker-tags').factory('DockerTag', ['BastionResource', 'CurrentOrganization', function (BastionResource, CurrentOrganization) { return BastionResource('katello/api/v2/docker_tags/:id/:action/', {id: '@id', 'organization_id': CurrentOrganization}, { autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}}, 'autocompleteName': {method: 'GET', isArray: false, params: {id: 'auto_complete_name'}, transformResponse: function (data) { data = angular.fromJson(data); return {results: data}; } } } ); }] );
Version data entries
137 entries across 137 versions & 1 rubygems