1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

AC-2409 Migrate Accept Provider Component (#9390)

* AC-2409 Migrate Accept Provider Component

* AC-2409 Replaced the loading scenario
This commit is contained in:
KiruthigaManivannan
2024-06-12 19:34:43 +05:30
committed by GitHub
parent ae688d9e9e
commit c726b91c1f
2 changed files with 42 additions and 37 deletions

View File

@@ -2,6 +2,7 @@ import { NgModule } from "@angular/core";
import { RouterModule, Routes } from "@angular/router";
import { AuthGuard } from "@bitwarden/angular/auth/guards";
import { AnonLayoutWrapperComponent } from "@bitwarden/auth/angular";
import { Provider } from "@bitwarden/common/admin-console/models/domain/provider";
import { ProvidersComponent } from "@bitwarden/web-vault/app/admin-console/providers/providers.component";
import { FrontendLayoutComponent } from "@bitwarden/web-vault/app/layouts/frontend-layout.component";
@@ -48,10 +49,19 @@ const routes: Routes = [
component: SetupProviderComponent,
data: { titleId: "setupProvider" },
},
],
},
{
path: "",
component: AnonLayoutWrapperComponent,
children: [
{
path: "accept-provider",
component: AcceptProviderComponent,
data: { titleId: "acceptProvider" },
data: {
pageTitle: "joinProvider",
titleId: "acceptProvider",
},
},
],
},