From e9a88b5505e2e915c4d26ef6430bb4170b28b846 Mon Sep 17 00:00:00 2001 From: Gbubemi Smith Date: Fri, 8 Jul 2022 17:40:36 +0100 Subject: [PATCH] made the get plans endpoint anonymous (#2107) --- src/Api/Controllers/PlansController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Api/Controllers/PlansController.cs b/src/Api/Controllers/PlansController.cs index ba609511ff..5f5d44c337 100644 --- a/src/Api/Controllers/PlansController.cs +++ b/src/Api/Controllers/PlansController.cs @@ -17,6 +17,7 @@ namespace Bit.Api.Controllers } [HttpGet("")] + [AllowAnonymous] public ListResponseModel Get() { var data = StaticStore.Plans;