1
0
mirror of https://github.com/bitwarden/server synced 2025-12-06 00:03:34 +00:00

[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

View File

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