1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00

Bulk re-invite of org users (#1316)

* Add APIs for Bulk reinvinte

* Resolve review comments.
This commit is contained in:
Oscar Hinton
2021-05-12 11:18:25 +02:00
committed by GitHub
parent 69c2673f1f
commit e2f633dace
9 changed files with 98 additions and 1 deletions

View File

@ -1,4 +1,5 @@
using Bit.Core.Models.Data;
using System;
using Bit.Core.Models.Data;
using Bit.Core.Models.Table;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
@ -89,4 +90,10 @@ namespace Bit.Core.Models.Api
{
public string ResetPasswordKey { get; set; }
}
public class OrganizationUserBulkReinviteRequestModel
{
[Required]
public IEnumerable<Guid> Ids { get; set; }
}
}