Sha256: 9b9ef9022cc8a61f7672c7cc169f65c0b9826c92640bbe8f0dc57c24b38fbf61
Contents?: true
Size: 674 Bytes
Versions: 45
Compression:
Stored size: 674 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) { return BastionResource('katello/api/v2/module_streams/:id', {'id': '@id'}, { autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}} } ); } angular .module('Bastion.module-streams') .factory('ModuleStream', ModuleStream); ModuleStream.$inject = ['BastionResource']; })();
Version data entries
45 entries across 45 versions & 1 rubygems