1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-12 21:27:35 -05:00

[PM-10323] Remove user verification from organization user deletion methods (#4965)

This commit is contained in:
Rui Tomé
2024-11-04 14:48:13 +00:00
committed by GitHub
parent 96862b974f
commit 60672bbe48
3 changed files with 12 additions and 86 deletions

View File

@ -1,10 +0,0 @@
using System.ComponentModel.DataAnnotations;
using Bit.Api.Auth.Models.Request.Accounts;
namespace Bit.Api.AdminConsole.Models.Request.Organizations;
public class SecureOrganizationUserBulkRequestModel : SecretVerificationRequestModel
{
[Required]
public IEnumerable<Guid> Ids { get; set; }
}