mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 02:33:46 +00:00
bulk move/delete apis
This commit is contained in:
@@ -2,6 +2,6 @@ export class CipherBulkDeleteRequest {
|
||||
ids: string[];
|
||||
|
||||
constructor(ids: string[]) {
|
||||
this.ids = ids;
|
||||
this.ids = ids == null ? [] : ids;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user