1
0
mirror of https://github.com/bitwarden/web synced 2025-12-12 06:13:28 +00:00

recover delete request page

This commit is contained in:
Kyle Spearrin
2018-07-13 15:54:49 -04:00
parent 3b28e68e31
commit 63aa55baf1
5 changed files with 73 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ import { AcceptOrganizationComponent } from './accounts/accept-organization.comp
import { HintComponent } from './accounts/hint.component';
import { LockComponent } from './accounts/lock.component';
import { LoginComponent } from './accounts/login.component';
import { RecoverDeleteComponent } from './accounts/recover-delete.component';
import { RecoverTwoFactorComponent } from './accounts/recover-two-factor.component';
import { RegisterComponent } from './accounts/register.component';
import { TwoFactorComponent } from './accounts/two-factor.component';
@@ -77,6 +78,7 @@ const routes: Routes = [
{ path: 'accept-organization', component: AcceptOrganizationComponent },
{ path: 'recover', pathMatch: 'full', redirectTo: 'recover-2fa' },
{ path: 'recover-2fa', component: RecoverTwoFactorComponent, canActivate: [UnauthGuardService] },
{ path: 'recover-delete', component: RecoverDeleteComponent, canActivate: [UnauthGuardService] },
],
},
{