1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

[SM-673] redirect from SM root to overview page (#5202)

* remove deprecated CanActivate; use CanActivateFn; redirect to available org from SM root

* fix route

* not working: redirect after login

* add sync service workaround
This commit is contained in:
Will Martin
2023-05-05 14:48:12 -04:00
committed by GitHub
parent d8b8bf5218
commit 53c81a2ee3
3 changed files with 96 additions and 55 deletions

View File

@@ -5,10 +5,8 @@ import { SharedModule } from "@bitwarden/web-vault/app/shared";
import { LayoutModule } from "./layout/layout.module";
import { SecretsManagerSharedModule } from "./shared/sm-shared.module";
import { SecretsManagerRoutingModule } from "./sm-routing.module";
import { SMGuard } from "./sm.guard";
@NgModule({
imports: [SharedModule, SecretsManagerSharedModule, SecretsManagerRoutingModule, LayoutModule],
providers: [SMGuard],
})
export class SecretsManagerModule {}