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

[PS-2322] Extend browser's help and feedback page (#4532)

* extend browser held and feedback

* Remove headers and add i18n
This commit is contained in:
Daniel James Smith
2023-02-27 16:26:47 +01:00
committed by GitHub
parent 8b5a223ad4
commit 4d25afe873
8 changed files with 96 additions and 6 deletions

View File

@@ -38,6 +38,7 @@ import { ExcludedDomainsComponent } from "./settings/excluded-domains.component"
import { ExportComponent } from "./settings/export.component";
import { FolderAddEditComponent } from "./settings/folder-add-edit.component";
import { FoldersComponent } from "./settings/folders.component";
import { HelpAndFeedbackComponent } from "./settings/help-and-feedback.component";
import { OptionsComponent } from "./settings/options.component";
import { PremiumComponent } from "./settings/premium.component";
import { SettingsComponent } from "./settings/settings.component";
@@ -273,6 +274,12 @@ const routes: Routes = [
canActivate: [AuthGuard],
data: { state: "update-temp-password" },
},
{
path: "help-and-feedback",
component: HelpAndFeedbackComponent,
canActivate: [AuthGuard],
data: { state: "help-and-feedback" },
},
{
path: "tabs",
component: TabsComponent,