Sha256: b2c58c112f45a180262bace3e0c500299977adb3d3e3b007dcaf41e231b3beac

Contents?: true

Size: 536 Bytes

Versions: 9

Compression:

Stored size: 536 Bytes

Contents

(function () {
    'use strict';

    /**
     * @ngdoc factory
     * @name  Bastion.docker-images.factory:DockerImage
     *
     * @description
     *   Provides a BastionResource for interacting with Docker Images
     */
    function DockerImage(BastionResource) {
        return BastionResource('/katello/api/v2/docker_images/:id',
            {'id': '@id'}
        );
    }

    angular
        .module('Bastion.docker-images')
        .factory('DockerImage', DockerImage);

    DockerImage.$inject = ['BastionResource'];

})();

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
katello-2.4.5 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
katello-2.4.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
katello-2.4.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
katello-2.4.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
katello-2.4.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
katello-2.4.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
katello-2.4.0.rc3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
katello-2.4.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js
katello-2.4.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-images/docker-image.factory.js