mirror of
https://github.com/bitwarden/server.git
synced 2026-02-15 13:23:26 +08:00
The purpose of this PR is to create server endpoints for creating, reading, updating, and deleting access policies for projects.
9 lines
225 B
C#
9 lines
225 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.SecretManagerFeatures.AccessPolicies.Interfaces;
|
|
|
|
public interface IUpdateAccessPolicyCommand
|
|
{
|
|
public Task<BaseAccessPolicy> UpdateAsync(Guid id, bool read, bool write);
|
|
}
|