mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
* Add endpoints to check current user's permission * Swap to adding current user permission onto GET * Cleanup DI * Add ProjectPermissionDetails DTO and query * code review updates * Remove assert recent for longer running creates
10 lines
215 B
C#
10 lines
215 B
C#
using Bit.Core.SecretsManager.Entities;
|
|
|
|
namespace Bit.Core.SecretsManager.Models.Data;
|
|
|
|
public class ProjectPermissionDetails : Project
|
|
{
|
|
public bool Read { get; set; }
|
|
public bool Write { get; set; }
|
|
}
|