mirror of
https://github.com/bitwarden/server
synced 2026-01-04 17:43:53 +00:00
11 lines
327 B
C#
11 lines
327 B
C#
using Microsoft.AspNetCore.Authorization.Infrastructure;
|
|
|
|
namespace Bit.Api.Vault.AuthorizationHandlers.Groups;
|
|
|
|
public class GroupOperationRequirement : OperationAuthorizationRequirement { }
|
|
|
|
public static class GroupOperations
|
|
{
|
|
public static readonly GroupOperationRequirement Read = new() { Name = nameof(Read) };
|
|
}
|