mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 10:02:47 -05:00
Add self-host eligibility to organization metadata (#4867)
This commit is contained in:
@ -1,8 +1,10 @@
|
||||
namespace Bit.Core.Billing.Models;
|
||||
|
||||
public record OrganizationMetadata(
|
||||
bool IsEligibleForSelfHost,
|
||||
bool IsOnSecretsManagerStandalone)
|
||||
{
|
||||
public static OrganizationMetadata Default() => new(
|
||||
IsOnSecretsManagerStandalone: default);
|
||||
IsEligibleForSelfHost: false,
|
||||
IsOnSecretsManagerStandalone: false);
|
||||
}
|
||||
|
Reference in New Issue
Block a user