mirror of
https://github.com/bitwarden/server.git
synced 2026-02-15 05:13:30 +08:00
The purpose of this PR is to create server endpoints for creating, reading, updating, and deleting access policies for projects.
9 lines
233 B
C#
9 lines
233 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.SecretManagerFeatures.AccessPolicies.Interfaces;
|
|
|
|
public interface ICreateAccessPoliciesCommand
|
|
{
|
|
Task<List<BaseAccessPolicy>> CreateAsync(List<BaseAccessPolicy> accessPolicies);
|
|
}
|