mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
18 lines
532 B
C#
18 lines
532 B
C#
#nullable enable
|
|
|
|
using Bit.Core.Context;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Api.AdminConsole.Authorization.Requirements;
|
|
|
|
public class ManageUsersRequirement : IOrganizationRequirement
|
|
{
|
|
public async Task<bool> AuthorizeAsync(
|
|
CurrentContextOrganization? organizationClaims,
|
|
Func<Task<bool>> isProviderUserForOrg)
|
|
=> organizationClaims is
|
|
{ Type: OrganizationUserType.Owner or OrganizationUserType.Admin } or
|
|
{ Permissions.ManageUsers: true }
|
|
|| await isProviderUserForOrg();
|
|
}
|