mirror of
https://github.com/bitwarden/server
synced 2026-01-08 19:43:34 +00:00
* refactoring replace logic * model for policies + authz handler + unit tests * update AP repository * add new endpoints to controller * update unit tests and integration tests --------- Co-authored-by: cd-bitwarden <106776772+cd-bitwarden@users.noreply.github.com>
13 lines
427 B
C#
13 lines
427 B
C#
using Microsoft.AspNetCore.Authorization.Infrastructure;
|
|
|
|
namespace Bit.Core.SecretsManager.AuthorizationRequirements;
|
|
|
|
public class ServiceAccountPeopleAccessPoliciesOperationRequirement : OperationAuthorizationRequirement
|
|
{
|
|
}
|
|
|
|
public static class ServiceAccountPeopleAccessPoliciesOperations
|
|
{
|
|
public static readonly ServiceAccountPeopleAccessPoliciesOperationRequirement Replace = new() { Name = nameof(Replace) };
|
|
}
|