[PM-23713] plans controller needs app authorize so desktop and browser can use (#6512)

This commit is contained in:
Kyle Denney 2025-10-29 10:18:49 -05:00 committed by GitHub
parent 4b1685d346
commit ca0d5bf8cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ using Microsoft.AspNetCore.Mvc;
namespace Bit.Api.Billing.Controllers; namespace Bit.Api.Billing.Controllers;
[Route("plans")] [Route("plans")]
[Authorize("Web")] [Authorize("Application")]
public class PlansController( public class PlansController(
IPricingClient pricingClient) : Controller IPricingClient pricingClient) : Controller
{ {