mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00

* mssql add column and migration * Add secret access policies to EF models and config * Clear new access policies on service account delete * Add SM cleanup code on delete * Fix EF org user bulk delete * Run EF migrations
14 lines
634 B
C#
14 lines
634 B
C#
namespace Bit.Infrastructure.EntityFramework.SecretsManager.Discriminators;
|
|
|
|
public static class AccessPolicyDiscriminator
|
|
{
|
|
public const string UserProject = "user_project";
|
|
public const string UserServiceAccount = "user_service_account";
|
|
public const string UserSecret = "user_secret";
|
|
public const string GroupProject = "group_project";
|
|
public const string GroupServiceAccount = "group_service_account";
|
|
public const string GroupSecret = "group_secret";
|
|
public const string ServiceAccountProject = "service_account_project";
|
|
public const string ServiceAccountSecret = "service_account_secret";
|
|
}
|