Sha256: 365c5fcc6f58b7b651865fb50360fcefa6b0130331c1ab9828c0e0c7c07f49d6
Contents?: true
Size: 763 Bytes
Versions: 45
Compression:
Stored size: 763 Bytes
Contents
/** * @ngdoc service * @name Bastion.content-views.factory:ContentViewHistory * * @requires BastionResource * @requires CurrentOrganization * * @description * Provides a BastionResource for interacting with content view histories. */ angular.module('Bastion.content-views').factory('ContentViewHistory', ['BastionResource', 'CurrentOrganization', function (BastionResource, CurrentOrganization) { return BastionResource('/katello/api/v2/content_views/:contentViewId/history/:action', {id: '@id', contentViewId: '@contentViewId', 'organization_id': CurrentOrganization}, { autocomplete: {method: 'GET', isArray: true, params: {action: 'auto_complete_search'}} } ); }] );
Version data entries
45 entries across 45 versions & 1 rubygems