Sha256: 6c99a8191dff9c63814abfd9b9b9bd1baa853e319ff64679bf8cf43c77c6ac9c

Contents?: true

Size: 1.18 KB

Versions: 29

Compression:

Stored size: 1.18 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', {
        abstract: true,
        controller: 'DockerTagsController',
        templateUrl: 'docker-tags/views/docker-tags.html'
    })
    .state('docker-tags.index', {
        url: '/docker_tags',
        permission: ['view_products', 'view_content_views'],
        views: {
            'table': {
                templateUrl: 'docker-tags/views/docker-tags-table-full.html'
            }
        }
    })
    .state('docker-tags.details', {
        url: '/docker_tags/:tagId',
        permission: ['view_products', 'view_content_views'],
        collapsed: true,
        views: {
            'table': {
                templateUrl: 'docker-tags/views/docker-tags-table-collapsed.html'
            },
            'action-panel': {
                controller: 'DockerTagsDetailsController',
                templateUrl: 'docker-tags/details/views/docker-tags-details.html'
            }
        }
    });
}]);

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
katello-3.2.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.2.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.2.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.2.0.rc3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.2.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.2.0.rc1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.2.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.1.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.1.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.1.0.rc2.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.0.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-2.4.5 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.1.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-2.4.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.0.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-2.4.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.0.0.rc7 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-3.0.0.rc5 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js
katello-2.4.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js