1
0
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:
Addison Beck 2020-07-20 17:48:27 -05:00
parent 1cb59b5cc7
commit 144f06a115

View File

@ -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;
}
}