Sha256: aa25a3a90cd6e491e08656826c6b7cc83a6c9990ee2654ac05b716347341d3db
Contents?: true
Size: 758 Bytes
Versions: 134
Compression:
Stored size: 758 Bytes
Contents
(function () { 'use strict'; /** * @ngdoc factory * @name Bastion.module-streams.factory:ModuleStream * * @description * Provides a BastionResource for interacting with Ostree Branches */ function ModuleStream(BastionResource, CurrentOrganization) { return BastionResource('katello/api/v2/module_streams/:id', {'id': '@id', 'organization_id': CurrentOrganization}, { autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}} } ); } angular .module('Bastion.module-streams') .factory('ModuleStream', ModuleStream); ModuleStream.$inject = ['BastionResource', 'CurrentOrganization']; })();
Version data entries
134 entries across 134 versions & 1 rubygems