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
1 changed files with 3 additions and 1 deletions

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