Sha256: d83651100483bb71006eab75613387d621bfb0ec2ff3d8cebc85fdfd88d95455
Contents?: true
Size: 646 Bytes
Versions: 29
Compression:
Stored size: 646 Bytes
Contents
/** * @ngdoc service * @name Katello.gpg-keys.factory:GPGKey * * @requires BastionResource * * @description * Provides a BastionResource for GPG keys. */ angular.module('Bastion.gpg-keys').factory('GPGKey', ['BastionResource', 'CurrentOrganization', function (BastionResource, CurrentOrganization) { return BastionResource('/katello/api/v2/gpg_keys/:id/:action', {id: '@id', 'organization_id': CurrentOrganization}, { autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}}, update: {method: 'PUT'} } ); }] );
Version data entries
29 entries across 29 versions & 1 rubygems