Sha256: d1b8eeea774a80202d166e54b403793e601270907342ce39f1493fda41afbf46

Contents?: true

Size: 1.72 KB

Versions: 55

Compression:

Stored size: 1.72 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'],
        template: '<div ui-view></div>',
        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

55 entries across 55 versions & 1 rubygems

Version Path
katello-3.15.3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.0.rc1.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.0.rc1.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.0.rc1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.15.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.14.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.13.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.14.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.13.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.14.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.13.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.14.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.13.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js