1
0
mirror of https://github.com/bitwarden/server synced 2025-12-26 05:03:18 +00:00

consolidating 2 feature flags into one (#6430)

it was determined we don't need the one that was removed
This commit is contained in:
Kyle Denney
2025-10-08 09:21:23 -05:00
committed by GitHub
parent 0e1edadeb7
commit e191ae9651
3 changed files with 2 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ public class AccountBillingVNextController(
}
[HttpPost("subscription")]
[RequireFeature(FeatureFlagKeys.PM23385_UseNewPremiumFlow)]
[RequireFeature(FeatureFlagKeys.PM24996ImplementUpgradeFromFreeDialog)]
[InjectUser]
public async Task<IResult> CreateSubscriptionAsync(
[BindNever] User user,

View File

@@ -21,7 +21,7 @@ public class SelfHostedAccountBillingController(
ICreatePremiumSelfHostedSubscriptionCommand createPremiumSelfHostedSubscriptionCommand) : BaseBillingController
{
[HttpPost("license")]
[RequireFeature(FeatureFlagKeys.PM23385_UseNewPremiumFlow)]
[RequireFeature(FeatureFlagKeys.PM24996ImplementUpgradeFromFreeDialog)]
[InjectUser]
public async Task<IResult> UploadLicenseAsync(
[BindNever] User user,