1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

fix: remove TXT generation, separate save/verify steps, refs AC-2350 (#8540)

This commit is contained in:
Vincent Salucci
2024-04-08 14:32:14 -05:00
committed by GitHub
parent 18ae698f8d
commit c73372310b
3 changed files with 10 additions and 20 deletions

View File

@@ -1,9 +1,7 @@
export class OrganizationDomainRequest {
txt: string;
domainName: string;
constructor(txt: string, domainName: string) {
this.txt = txt;
constructor(domainName: string) {
this.domainName = domainName;
}
}