mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
[PM-4198][TechDebt] Split up import and export modules (#6483)
* Split up import/export into separate modules * Fix routing and apply PR feedback * Renamed OrganizationExport exports to OrganizationVaultExport * Renamed filenames according to export rename --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ad867150a0
commit
3e720c05f2
@@ -254,11 +254,13 @@ const routes: Routes = [
|
||||
children: [
|
||||
{ path: "", pathMatch: "full", redirectTo: "generator" },
|
||||
{
|
||||
path: "",
|
||||
path: "import",
|
||||
loadChildren: () => import("./tools/import/import.module").then((m) => m.ImportModule),
|
||||
},
|
||||
{
|
||||
path: "export",
|
||||
loadChildren: () =>
|
||||
import("./tools/import-export/import-export.module").then(
|
||||
(m) => m.ImportExportModule
|
||||
),
|
||||
import("./tools/vault-export/export.module").then((m) => m.ExportModule),
|
||||
},
|
||||
{
|
||||
path: "generator",
|
||||
|
||||
Reference in New Issue
Block a user