mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
19 lines
567 B
TypeScript
19 lines
567 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { PolicyType } from "@bitwarden/common/enums/policyType";
|
|
|
|
import { BasePolicy, BasePolicyComponent } from "./base-policy.component";
|
|
|
|
export class DisableSendPolicy extends BasePolicy {
|
|
readonly name = "disableSend";
|
|
readonly description = "disableSendPolicyDesc";
|
|
type = PolicyType.DisableSend;
|
|
component = DisableSendPolicyComponent;
|
|
}
|
|
|
|
@Component({
|
|
selector: "policy-disable-send",
|
|
templateUrl: "disable-send.component.html",
|
|
})
|
|
export class DisableSendPolicyComponent extends BasePolicyComponent {}
|