1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-28 10:33:31 +00:00

WIP explore existing Send attributes and logic

This commit is contained in:
John Harrington
2025-12-24 08:07:47 -07:00
parent 735f885091
commit 69839292b1
5 changed files with 7 additions and 4 deletions

View File

@@ -33,6 +33,7 @@ export class Send extends Domain {
emails: string;
disabled: boolean;
hideEmail: boolean;
// TODO add authType enum
constructor(obj?: SendData) {
super();

View File

@@ -29,6 +29,7 @@ export class SendView implements View {
emails: string[] = [];
disabled = false;
hideEmail = false;
// TODO add AuthType enum
constructor(s?: Send) {
if (!s) {