mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
added org id to the bulk delete request model
This commit is contained in:
@@ -1,7 +1,9 @@
|
|||||||
export class CipherBulkDeleteRequest {
|
export class CipherBulkDeleteRequest {
|
||||||
ids: string[];
|
ids: string[];
|
||||||
|
organizationId: string;
|
||||||
|
|
||||||
constructor(ids: string[]) {
|
constructor(ids: string[], organizationId?: string) {
|
||||||
this.ids = ids == null ? [] : ids;
|
this.ids = ids == null ? [] : ids;
|
||||||
|
this.organizationId = organizationId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user