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

Version Path
katello-3.17.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.17.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc5.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc5 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc4.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc4 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc3 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc2.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
katello-3.16.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js