mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Add error message if revoked user tries to accept invite (#2241)
This commit is contained in:
parent
edcac759eb
commit
c085f5d49c
@ -1376,6 +1376,11 @@ public class OrganizationService : IOrganizationService
|
|||||||
private async Task<OrganizationUser> AcceptUserAsync(OrganizationUser orgUser, User user,
|
private async Task<OrganizationUser> AcceptUserAsync(OrganizationUser orgUser, User user,
|
||||||
IUserService userService)
|
IUserService userService)
|
||||||
{
|
{
|
||||||
|
if (orgUser.Status == OrganizationUserStatusType.Revoked)
|
||||||
|
{
|
||||||
|
throw new BadRequestException("Your organization access has been revoked.");
|
||||||
|
}
|
||||||
|
|
||||||
if (orgUser.Status != OrganizationUserStatusType.Invited)
|
if (orgUser.Status != OrganizationUserStatusType.Invited)
|
||||||
{
|
{
|
||||||
throw new BadRequestException("Already accepted.");
|
throw new BadRequestException("Already accepted.");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user