mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-08 00:01:28 +01: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