Sha256: 220c8159e28b1156ad444a298075ba197873f5bed50f7fe760b8bc7184cb385d
Contents?: true
Size: 842 Bytes
Versions: 37
Compression:
Stored size: 842 Bytes
Contents
/** * @ngdoc service * @name Bastion.content-views.factory:ContentViewVersion * * @requires BastionResource * @requires CurrentOrganization * * @description * Provides a BastionResource for interacting with Content View Versions. */ angular.module('Bastion.content-views.versions').factory('ContentViewVersion', ['BastionResource', function (BastionResource) { return BastionResource('/katello/api/v2/content_view_versions/:id/:action', {id: '@id'}, { autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}}, update: {method: 'PUT'}, incrementalUpdate: {method: 'POST', params: {action: 'incremental_update'}}, promote: {method: 'POST', params: {action: 'promote'}} } ); }] );
Version data entries
37 entries across 37 versions & 1 rubygems