mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
Move web to apps/web and bitwarden_license/bit-web
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import { Component } from "@angular/core";
|
||||
import { FormBuilder } from "@angular/forms";
|
||||
|
||||
import { PolicyType } from "jslib-common/enums/policyType";
|
||||
|
||||
import { BasePolicy, BasePolicyComponent } from "./base-policy.component";
|
||||
|
||||
export class SendOptionsPolicy extends BasePolicy {
|
||||
name = "sendOptions";
|
||||
description = "sendOptionsPolicyDesc";
|
||||
type = PolicyType.SendOptions;
|
||||
component = SendOptionsPolicyComponent;
|
||||
}
|
||||
|
||||
@Component({
|
||||
selector: "policy-send-options",
|
||||
templateUrl: "send-options.component.html",
|
||||
})
|
||||
export class SendOptionsPolicyComponent extends BasePolicyComponent {
|
||||
data = this.formBuilder.group({
|
||||
disableHideEmail: false,
|
||||
});
|
||||
|
||||
constructor(private formBuilder: FormBuilder) {
|
||||
super();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user