Sha256: 891bd4e0dc37dea04494d6ec68f8261c257cecfe0e3c94a5d30ce31a60aea09f
Contents?: true
Size: 822 Bytes
Versions: 248
Compression:
Stored size: 822 Bytes
Contents
(function () { /** * @ngdoc object * @name Bastion.organizations.config * * @requires $stateProvider * * @description * State routes defined for the organizations module. */ function OrganizationRoutes($stateProvider) { $stateProvider.state('organizations', { abstract: true, template: '<div ui-view></div>' }) .state('organizations.select', { url: '/select_organization?toState', permission: 'view_organizations', controller: 'OrganizationSelectorController', templateUrl: 'organizations/views/organization-selector.html' }); } angular.module('Bastion.organizations').config(OrganizationRoutes); OrganizationRoutes.$inject = ['$stateProvider']; })();
Version data entries
248 entries across 248 versions & 1 rubygems