mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
19 lines
549 B
TypeScript
19 lines
549 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 {
|
|
name = "disableSend";
|
|
description = "disableSendPolicyDesc";
|
|
type = PolicyType.DisableSend;
|
|
component = DisableSendPolicyComponent;
|
|
}
|
|
|
|
@Component({
|
|
selector: "policy-disable-send",
|
|
templateUrl: "disable-send.component.html",
|
|
})
|
|
export class DisableSendPolicyComponent extends BasePolicyComponent {}
|