1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-26 10:36:19 +02:00
bitwarden-desktop/src/app/app-routing.module.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-01-16 21:58:17 +01:00
import { NgModule } from "@angular/core";
import { RouterModule, Routes } from "@angular/router";
2022-06-08 17:50:19 +02:00
import { AuthGuard } from "jslib-angular/guards/auth.guard";
import { LockGuard } from "jslib-angular/guards/lock.guard";
2018-02-08 17:12:25 +01:00
2018-01-31 23:06:14 +01:00
import { HintComponent } from "./accounts/hint.component";
2018-02-10 04:47:53 +01:00
import { LockComponent } from "./accounts/lock.component";
2018-01-16 21:58:17 +01:00
import { LoginComponent } from "./accounts/login.component";
2018-01-31 20:19:21 +01:00
import { RegisterComponent } from "./accounts/register.component";
import { RemovePasswordComponent } from "./accounts/remove-password.component";
merge sso feature branch (#523) * Update jslib (101c568 -> 14b01f2) (#506) * Update jslib (14b01f2 -> 1513b25) (#510) * [jslib] Update (1513b25 -> 7c3a9d6) (#516) * update jslib (1513b25 -> 7c3a9d6) * Updated call to constructor super * [SSO] Added SSO flows & functionality (#513) * update jslib * bump version * Added sso button (wip) * Added sso & change password // Added modules/routes // Added strings for localization * Added password strength comp // reverted login route * Updated sso component to send client id // added routing for sso // added crypto function to services module provider list * Added deep linking * First round of UI updates // Added sso browser launching // Added missing strings * Updated UI and added missing strings * Removed extra change password style * Let constructor for WindowMain handle default width/height * Prepared for jslib update * Update jslib (1513b25 -> 7c3a9d6) * Update login super * Added params for launchSsoBrowser function * Update jslib (7c3a9d6 -> 4203937) * Added missing strings, removed unnecessary class param * Upgrade TypeScript (#517) * Updated password score // Update styles * Removed password-strength component files * Cleaned up module class // Fixed UL/LI formatting issues * Use exisiting loading string // removed new string * Update jslib (4203937 -> 9957125) * Updated class to perform new submit actions * Upgrade Angular (#520) * di resolution for CryptoFunctionServiceAbstraction * Update jslib (9957125 -> 5d874d0) (#521) * Updated change password flow to match web * Updated callout style Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com> Co-authored-by: Oscar Hinton <hinton.oscar@gmail.com> Co-authored-by: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Co-authored-by: Oscar Hinton <hinton.oscar@gmail.com>
2020-08-21 15:50:36 +02:00
import { SetPasswordComponent } from "./accounts/set-password.component";
import { SsoComponent } from "./accounts/sso.component";
2018-02-01 04:54:13 +01:00
import { TwoFactorComponent } from "./accounts/two-factor.component";
import { UpdateTempPasswordComponent } from "./accounts/update-temp-password.component";
2022-06-08 17:50:19 +02:00
import { LoginGuard } from "./guards/login.guard";
2021-02-03 22:24:49 +01:00
import { SendComponent } from "./send/send.component";
2021-02-05 18:44:45 +01:00
import { VaultComponent } from "./vault/vault.component";
2018-01-16 21:58:17 +01:00
const routes: Routes = [
2018-02-08 17:12:25 +01:00
{ path: "", redirectTo: "/vault", pathMatch: "full" },
2021-04-20 06:01:33 +02:00
{
path: "lock",
component: LockComponent,
2022-06-08 17:50:19 +02:00
canActivate: [LockGuard],
2021-04-20 06:01:33 +02:00
},
{
path: "login",
component: LoginComponent,
2022-06-08 17:50:19 +02:00
canActivate: [LoginGuard],
2021-04-20 06:01:33 +02:00
},
2018-02-01 04:54:13 +01:00
{ path: "2fa", component: TwoFactorComponent },
2018-01-31 20:19:21 +01:00
{ path: "register", component: RegisterComponent },
2018-02-08 17:12:25 +01:00
{
path: "vault",
component: VaultComponent,
2022-06-08 17:50:19 +02:00
canActivate: [AuthGuard],
2018-02-08 17:12:25 +01:00
},
2018-01-31 23:06:14 +01:00
{ path: "hint", component: HintComponent },
merge sso feature branch (#523) * Update jslib (101c568 -> 14b01f2) (#506) * Update jslib (14b01f2 -> 1513b25) (#510) * [jslib] Update (1513b25 -> 7c3a9d6) (#516) * update jslib (1513b25 -> 7c3a9d6) * Updated call to constructor super * [SSO] Added SSO flows & functionality (#513) * update jslib * bump version * Added sso button (wip) * Added sso & change password // Added modules/routes // Added strings for localization * Added password strength comp // reverted login route * Updated sso component to send client id // added routing for sso // added crypto function to services module provider list * Added deep linking * First round of UI updates // Added sso browser launching // Added missing strings * Updated UI and added missing strings * Removed extra change password style * Let constructor for WindowMain handle default width/height * Prepared for jslib update * Update jslib (1513b25 -> 7c3a9d6) * Update login super * Added params for launchSsoBrowser function * Update jslib (7c3a9d6 -> 4203937) * Added missing strings, removed unnecessary class param * Upgrade TypeScript (#517) * Updated password score // Update styles * Removed password-strength component files * Cleaned up module class // Fixed UL/LI formatting issues * Use exisiting loading string // removed new string * Update jslib (4203937 -> 9957125) * Updated class to perform new submit actions * Upgrade Angular (#520) * di resolution for CryptoFunctionServiceAbstraction * Update jslib (9957125 -> 5d874d0) (#521) * Updated change password flow to match web * Updated callout style Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com> Co-authored-by: Oscar Hinton <hinton.oscar@gmail.com> Co-authored-by: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Co-authored-by: Oscar Hinton <hinton.oscar@gmail.com>
2020-08-21 15:50:36 +02:00
{ path: "set-password", component: SetPasswordComponent },
{ path: "sso", component: SsoComponent },
2021-02-03 22:24:49 +01:00
{
path: "send",
component: SendComponent,
2022-06-08 17:50:19 +02:00
canActivate: [AuthGuard],
2021-02-03 22:24:49 +01:00
},
{
path: "update-temp-password",
component: UpdateTempPasswordComponent,
2022-06-08 17:50:19 +02:00
canActivate: [AuthGuard],
},
{
path: "remove-password",
component: RemovePasswordComponent,
2022-06-08 17:50:19 +02:00
canActivate: [AuthGuard],
data: { titleId: "removeMasterPassword" },
},
2018-01-16 21:58:17 +01:00
];
@NgModule({
2018-01-16 23:30:57 +01:00
imports: [
RouterModule.forRoot(routes, {
useHash: true,
/*enableTracing: true,*/
}),
],
2018-01-16 21:58:17 +01:00
exports: [RouterModule],
})
export class AppRoutingModule {}