mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-16 21:03:22 +08:00
added org id to the bulk delete request model
This commit is contained in:
parent
1cb59b5cc7
commit
144f06a115
@ -1,7 +1,9 @@
|
||||
export class CipherBulkDeleteRequest {
|
||||
ids: string[];
|
||||
organizationId: string;
|
||||
|
||||
constructor(ids: string[]) {
|
||||
constructor(ids: string[], organizationId?: string) {
|
||||
this.ids = ids == null ? [] : ids;
|
||||
this.organizationId = organizationId;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user