Sha256: 92bd4cb15e8f372a05da5d396b488d9f61c3f039d40fc84026a067057bd0d30c
Contents?: true
Size: 691 Bytes
Versions: 16
Compression:
Stored size: 691 Bytes
Contents
/** * @ngdoc module * @name Bastion.repositories * * @description * Module for repository related functionality. */ angular.module('Bastion.repositories', [ 'ngResource', 'ui.router', 'ngUpload', 'Bastion', 'Bastion.i18n', 'Bastion.utils', 'Bastion.common', 'Bastion.components', 'Bastion.components.formatters', 'Bastion.packages', 'Bastion.products', 'Bastion.docker-manifests', 'Bastion.files' ]); angular.module('Bastion.repositories').run(['$rootScope', '$state', '$stateParams', function ($rootScope, $state, $stateParams) { $rootScope.$state = $state; $rootScope.$stateParams = $stateParams; } ]);
Version data entries
16 entries across 16 versions & 1 rubygems