1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

refactor: remove organizationId from CollectionBulkDeleteRequestModel, refs AC-1649 (#3282)

This commit is contained in:
Vincent Salucci
2023-09-20 13:07:58 -05:00
committed by GitHub
parent ffa09d105e
commit f2acf1c366

View File

@ -35,8 +35,6 @@ public class CollectionBulkDeleteRequestModel
{
[Required]
public IEnumerable<Guid> Ids { get; set; }
[Obsolete("OrganizationId is no longer required and will be removed in a future release")]
public string OrganizationId { get; set; }
}
public class CollectionWithIdRequestModel : CollectionRequestModel