1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

[SG-901] Relocate Autofill on page load setting (#4629)

* [SG-901] Relocate Autofill on page load setting
This commit is contained in:
André Bispo
2023-02-02 16:28:21 +00:00
committed by GitHub
parent 2b6b942f3e
commit e3e88167e5
6 changed files with 145 additions and 76 deletions

View File

@@ -32,6 +32,7 @@ import { SendAddEditComponent } from "./send/send-add-edit.component";
import { SendGroupingsComponent } from "./send/send-groupings.component";
import { SendTypeComponent } from "./send/send-type.component";
import { DebounceNavigationService } from "./services/debounceNavigationService";
import { AutofillComponent } from "./settings/autofill.component";
import { ExcludedDomainsComponent } from "./settings/excluded-domains.component";
import { ExportComponent } from "./settings/export.component";
import { FolderAddEditComponent } from "./settings/folder-add-edit.component";
@@ -187,6 +188,12 @@ const routes: Routes = [
canActivate: [AuthGuard],
data: { state: "export" },
},
{
path: "autofill",
component: AutofillComponent,
canActivate: [AuthGuard],
data: { state: "autofill" },
},
{
path: "folders",
component: FoldersComponent,