1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

org route guards

This commit is contained in:
Kyle Spearrin
2018-07-05 15:27:23 -04:00
parent ba3b2fbed1
commit 7baf72d3db
6 changed files with 80 additions and 22 deletions

View File

@@ -11,6 +11,8 @@ import { I18nService } from '../../services/i18n.service';
import { MemoryStorageService } from '../../services/memoryStorage.service';
import { WebPlatformUtilsService } from '../../services/webPlatformUtils.service';
import { OrganizationGuardService } from './organization-guard.service';
import { OrganizationTypeGuardService } from './organization-type-guard.service';
import { RouterService } from './router.service';
import { UnauthGuardService } from './unauth-guard.service';
@@ -142,6 +144,8 @@ export function initFactory(): Function {
providers: [
ValidationService,
AuthGuardService,
OrganizationGuardService,
OrganizationTypeGuardService,
UnauthGuardService,
RouterService,
{ provide: AuditServiceAbstraction, useValue: auditService },