mirror of
https://github.com/bitwarden/server
synced 2026-01-06 10:34:01 +00:00
[AC-2488] Return default state for billing metadata when Organization has no Stripe entities (#4018)
* Return default state for billing metadata when no stripe entities * Fix tests
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
namespace Bit.Core.Billing.Models;
|
||||
|
||||
public record OrganizationMetadataDTO(
|
||||
bool IsOnSecretsManagerStandalone);
|
||||
bool IsOnSecretsManagerStandalone)
|
||||
{
|
||||
public static OrganizationMetadataDTO Default() => new(
|
||||
IsOnSecretsManagerStandalone: default);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user