Sha256: 21fde6a9330496b75e427f7dde574ea3e66497f0fbce0de609a848646c5fd707
Contents?: true
Size: 816 Bytes
Versions: 141
Compression:
Stored size: 816 Bytes
Contents
(function () { 'use strict'; /** * @ngdoc factory * @name Bastion.docker-manifest-lists.factory:DockerManifestList * * @description * Provides a BastionResource for interacting with Docker Manifest Lists */ function DockerManifestList(BastionResource, CurrentOrganization) { return BastionResource('katello/api/v2/docker_manifest_lists/:id', {'id': '@id', 'organization_id': CurrentOrganization}, { 'autocomplete': {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}} } ); } angular .module('Bastion.docker-manifest-lists') .factory('DockerManifestList', DockerManifestList); DockerManifestList.$inject = ['BastionResource', 'CurrentOrganization']; })();
Version data entries
141 entries across 141 versions & 1 rubygems