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