mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00

* Extract authorization from access policy commands * Use auto mapper to ignore unwanted properties ---------
28 lines
892 B
C#
28 lines
892 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Infrastructure.EntityFramework.SecretsManager.Models;
|
|
using ServiceAccountProjectAccessPolicy = Bit.Core.SecretsManager.Entities.ServiceAccountProjectAccessPolicy;
|
|
|
|
namespace Bit.Api.SecretsManager.Models.Request;
|
|
|
|
public class GrantedAccessPolicyRequest
|
|
{
|
|
[Required]
|
|
public Guid GrantedId { get; set; }
|
|
|
|
[Required]
|
|
public bool Read { get; set; }
|
|
|
|
[Required]
|
|
public bool Write { get; set; }
|
|
|
|
public ServiceAccountProjectAccessPolicy ToServiceAccountProjectAccessPolicy(Guid serviceAccountId, Guid organizationId) =>
|
|
new()
|
|
{
|
|
ServiceAccountId = serviceAccountId,
|
|
ServiceAccount = new ServiceAccount() { Id = serviceAccountId, OrganizationId = organizationId },
|
|
GrantedProjectId = GrantedId,
|
|
Read = Read,
|
|
Write = Write,
|
|
};
|
|
}
|