Sha256: 08ce46d08bf29f18ab5252738d56b0b114b1d769190dbd49950bfe8ddfa08888

Contents?: true

Size: 1.68 KB

Versions: 106

Compression:

Stored size: 1.68 KB

Contents

/**
 * @ngdoc object
 * @name Bastion.docker-tags.config
 *
 * @requires $stateProvider
 *
 * @description
 *   State routes defined for the docker tags module.
 */
angular.module('Bastion.docker-tags').config(['$stateProvider', function ($stateProvider) {
    $stateProvider.state('docker-tags', {
        url: '/docker_tags',
        permission: ['view_products', 'view_content_views'],
        views: {
            '@': {
                controller: 'DockerTagsController',
                templateUrl: 'docker-tags/views/docker-tags.html'
            }
        },
        ncyBreadcrumb: {
            label: "{{ 'Container Image Tags' | translate }}"
        }
    })
    .state('docker-tag', {
        abstract: true,
        url: '/docker_tags/:tagId',
        permission: 'view_products',
        controller: 'DockerTagDetailsController',
        templateUrl: 'docker-tags/details/views/docker-tag-details.html',
        ncyBreadcrumb: {
            label: "{{ 'Container Image Tags' | translate }}",
            parent: 'docker-tags'
        }
    })
    .state('docker-tag.info', {
        url: '',
        permission: 'view_products',
        templateUrl: 'docker-tags/details/views/docker-tag-info.html',
        ncyBreadcrumb: {
            label: "{{ tag.name }}",
            parent: 'docker-tag'
        }
    })
    .state('docker-tag.environments', {
        url: '/environments',
        permission: 'view_environments',
        templateUrl: 'docker-tags/details/views/docker-tag-environments.html',
        controller: 'DockerTagEnvironmentsController',
        ncyBreadcrumb: {
            label: "{{ 'Lifecycle Environments' | translate }}",
            parent: 'docker-tag.info'
        }
    });
}]);

Version data entries

106 entries across 106 versions & 1 rubygems

Version Path
katello-4.8.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.8.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.6 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.8.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.8.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.5 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.8.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.8.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.8.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.6.2.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.6.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.6.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.7.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-4.4.2.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js