1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-06 18:43:25 +00:00

Send layout & search

This commit is contained in:
addison
2021-02-03 16:24:49 -05:00
parent 62a43e536c
commit 6e49c481f0
15 changed files with 413 additions and 106 deletions

View File

@@ -15,6 +15,7 @@ import { SsoComponent } from './accounts/sso.component';
import { TwoFactorComponent } from './accounts/two-factor.component';
import { VaultComponent } from './vault/vault.component';
import { SendComponent } from './send/send.component';
const routes: Routes = [
{ path: '', redirectTo: '/vault', pathMatch: 'full' },
@@ -30,6 +31,11 @@ const routes: Routes = [
{ path: 'hint', component: HintComponent },
{ path: 'set-password', component: SetPasswordComponent },
{ path: 'sso', component: SsoComponent },
{
path: 'send',
component: SendComponent,
canActivate: [AuthGuardService],
},
];
@NgModule({