mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Add copy descriptions and warnings to policies (#470)
This commit is contained in:
parent
a27eddae56
commit
1d94185078
@ -44,20 +44,20 @@ export class PoliciesComponent implements OnInit {
|
|||||||
private router: Router) {
|
private router: Router) {
|
||||||
this.policies = [
|
this.policies = [
|
||||||
{
|
{
|
||||||
name: 'Two-step Login',
|
name: i18nService.t('twoStepLogin'),
|
||||||
description: 'Enforce two-step login options.',
|
description: i18nService.t('twoStepLoginPolicyDesc'),
|
||||||
type: PolicyType.TwoFactorAuthentication,
|
type: PolicyType.TwoFactorAuthentication,
|
||||||
enabled: false,
|
enabled: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Master Password',
|
name: i18nService.t('masterPass'),
|
||||||
description: 'Set requirements on master password strength.',
|
description: i18nService.t('masterPassPolicyDesc'),
|
||||||
type: PolicyType.MasterPassword,
|
type: PolicyType.MasterPassword,
|
||||||
enabled: false,
|
enabled: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Password Generator',
|
name: i18nService.t('passwordGenerator'),
|
||||||
description: 'Limit the parameters of the password generator.',
|
description: i18nService.t('passwordGeneratorPolicyDesc'),
|
||||||
type: PolicyType.PasswordGenerator,
|
type: PolicyType.PasswordGenerator,
|
||||||
enabled: false,
|
enabled: false,
|
||||||
},
|
},
|
||||||
|
@ -12,7 +12,11 @@
|
|||||||
<span class="sr-only">{{'loading' | i18n}}</span>
|
<span class="sr-only">{{'loading' | i18n}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body" *ngIf="!loading">
|
<div class="modal-body" *ngIf="!loading">
|
||||||
<p class="text-muted">{{description}}</p>
|
<p>{{description}}</p>
|
||||||
|
<app-callout type="warning" *ngIf="type === policyType.TwoFactorAuthentication"
|
||||||
|
title="{{'warning' | i18n}}" icon="fa-warning">
|
||||||
|
{{'twoStepLoginPolicyWarning' | i18n}}
|
||||||
|
</app-callout>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" id="enabled" [(ngModel)]="enabled"
|
<input class="form-check-input" type="checkbox" id="enabled" [(ngModel)]="enabled"
|
||||||
@ -106,4 +110,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -6,6 +6,7 @@ import { ActivatedRoute } from '@angular/router';
|
|||||||
|
|
||||||
import { ApiService } from 'jslib/abstractions/api.service';
|
import { ApiService } from 'jslib/abstractions/api.service';
|
||||||
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||||||
|
import { PolicyService } from 'jslib/abstractions/policy.service';
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
|
||||||
import { TwoFactorProviderType } from 'jslib/enums/twoFactorProviderType';
|
import { TwoFactorProviderType } from 'jslib/enums/twoFactorProviderType';
|
||||||
@ -20,8 +21,8 @@ import { TwoFactorSetupComponent as BaseTwoFactorSetupComponent } from '../../se
|
|||||||
export class TwoFactorSetupComponent extends BaseTwoFactorSetupComponent {
|
export class TwoFactorSetupComponent extends BaseTwoFactorSetupComponent {
|
||||||
constructor(apiService: ApiService, userService: UserService,
|
constructor(apiService: ApiService, userService: UserService,
|
||||||
componentFactoryResolver: ComponentFactoryResolver, messagingService: MessagingService,
|
componentFactoryResolver: ComponentFactoryResolver, messagingService: MessagingService,
|
||||||
private route: ActivatedRoute) {
|
policyService: PolicyService, private route: ActivatedRoute) {
|
||||||
super(apiService, userService, componentFactoryResolver, messagingService);
|
super(apiService, userService, componentFactoryResolver, messagingService, policyService);
|
||||||
}
|
}
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
|
@ -15,6 +15,9 @@
|
|||||||
<span class="sr-only">{{'loading' | i18n}}</span>
|
<span class="sr-only">{{'loading' | i18n}}</span>
|
||||||
</small>
|
</small>
|
||||||
</h2>
|
</h2>
|
||||||
|
<app-callout type="warning" *ngIf="showPolicyWarning">
|
||||||
|
{{'twoStepLoginPolicyUserWarning' | i18n}}
|
||||||
|
</app-callout>
|
||||||
<ul class="list-group list-group-2fa">
|
<ul class="list-group list-group-2fa">
|
||||||
<li *ngFor="let p of providers" class="list-group-item d-flex align-items-center">
|
<li *ngFor="let p of providers" class="list-group-item d-flex align-items-center">
|
||||||
<div class="logo-2fa d-flex justify-content-center">
|
<div class="logo-2fa d-flex justify-content-center">
|
||||||
|
@ -9,10 +9,12 @@ import {
|
|||||||
|
|
||||||
import { ApiService } from 'jslib/abstractions/api.service';
|
import { ApiService } from 'jslib/abstractions/api.service';
|
||||||
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||||||
|
import { PolicyService } from 'jslib/abstractions/policy.service';
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
|
||||||
import { TwoFactorProviders } from 'jslib/services/auth.service';
|
import { TwoFactorProviders } from 'jslib/services/auth.service';
|
||||||
|
|
||||||
|
import { PolicyType } from 'jslib/enums/policyType';
|
||||||
import { TwoFactorProviderType } from 'jslib/enums/twoFactorProviderType';
|
import { TwoFactorProviderType } from 'jslib/enums/twoFactorProviderType';
|
||||||
|
|
||||||
import { ModalComponent } from '../modal.component';
|
import { ModalComponent } from '../modal.component';
|
||||||
@ -39,12 +41,14 @@ export class TwoFactorSetupComponent implements OnInit {
|
|||||||
organizationId: string;
|
organizationId: string;
|
||||||
providers: any[] = [];
|
providers: any[] = [];
|
||||||
canAccessPremium: boolean;
|
canAccessPremium: boolean;
|
||||||
|
showPolicyWarning = false;
|
||||||
loading = true;
|
loading = true;
|
||||||
|
|
||||||
private modal: ModalComponent = null;
|
private modal: ModalComponent = null;
|
||||||
|
|
||||||
constructor(protected apiService: ApiService, protected userService: UserService,
|
constructor(protected apiService: ApiService, protected userService: UserService,
|
||||||
protected componentFactoryResolver: ComponentFactoryResolver, protected messagingService: MessagingService) { }
|
protected componentFactoryResolver: ComponentFactoryResolver, protected messagingService: MessagingService,
|
||||||
|
protected policyService: PolicyService) { }
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
this.canAccessPremium = await this.userService.canAccessPremium();
|
this.canAccessPremium = await this.userService.canAccessPremium();
|
||||||
@ -83,6 +87,7 @@ export class TwoFactorSetupComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
this.evaluatePolicies();
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -166,5 +171,15 @@ export class TwoFactorSetupComponent implements OnInit {
|
|||||||
p.enabled = enabled;
|
p.enabled = enabled;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
this.evaluatePolicies();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async evaluatePolicies() {
|
||||||
|
if (this.organizationId == null && this.providers.filter((p) => p.enabled).length === 1) {
|
||||||
|
const policies = await this.policyService.getAll(PolicyType.TwoFactorAuthentication);
|
||||||
|
this.showPolicyWarning = policies != null && policies.some((p) => p.enabled);
|
||||||
|
} else {
|
||||||
|
this.showPolicyWarning = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2962,5 +2962,20 @@
|
|||||||
},
|
},
|
||||||
"clone": {
|
"clone": {
|
||||||
"message": "Clone"
|
"message": "Clone"
|
||||||
|
},
|
||||||
|
"masterPassPolicyDesc": {
|
||||||
|
"message": "Set minimum requirements for master password strength."
|
||||||
|
},
|
||||||
|
"twoStepLoginPolicyDesc": {
|
||||||
|
"message": "Require users to set up two-step login on their personal accounts."
|
||||||
|
},
|
||||||
|
"twoStepLoginPolicyWarning": {
|
||||||
|
"message": "Organization members who do not have two-step login enabled for their personal account will be removed from the organization and will receive an email notifying them about the change."
|
||||||
|
},
|
||||||
|
"twoStepLoginPolicyUserWarning": {
|
||||||
|
"message": "You are a member of an organization that requires two-step login to be enabled on your user account. If you disable all two-step login providers you will be automatically removed from these organizations."
|
||||||
|
},
|
||||||
|
"passwordGeneratorPolicyDesc": {
|
||||||
|
"message": "Set minimum requirements for password generator configuration."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user