1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

add settings -> Excluded Domains component

Provides a UI to edit the domains for which Bitwarden does not offer
to save login details.
This commit is contained in:
Tom Rittson
2020-08-31 17:14:50 +10:00
committed by Thomas Rittson
parent 7e41e84c7d
commit da636e26c2
6 changed files with 186 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ import { GroupingsComponent } from './vault/groupings.component';
import { PasswordHistoryComponent } from './vault/password-history.component';
import { ShareComponent } from './vault/share.component';
import { ViewComponent } from './vault/view.component';
import { ExcludedDomainsComponent } from './settings/excluded-domains.component';
const routes: Routes = [
{
@@ -200,6 +201,12 @@ const routes: Routes = [
canActivate: [AuthGuardService],
data: { state: 'sync' },
},
{
path: 'excluded-domains',
component: ExcludedDomainsComponent,
canActivate: [AuthGuardService],
data: { state: 'excluded-domains' },
},
{
path: 'premium',
component: PremiumComponent,