mirror of
https://github.com/bitwarden/browser
synced 2026-01-21 11:53:34 +00:00
* refactor: add barrel file for admin-console enums, update references, refs AC-1202 * fix: lint/prettier updates, refs AC-1202 * refactor: add enum suffix, refs AC-1202 * refactor: add barrel file for billing enums, update imports to use it, refs AC-1202 * fix: prettier, refs AC-1202 * refactor: add enum suffix for billing enums, refs AC-1202
19 lines
552 B
TypeScript
19 lines
552 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { PolicyType } from "@bitwarden/common/admin-console/enums";
|
|
|
|
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 {}
|