From 0df94b9597991f52ef4c46329f92b84cab9e082d Mon Sep 17 00:00:00 2001 From: Giulio <3272563+giuliohome@users.noreply.github.com> Date: Mon, 9 Oct 2023 23:59:13 +0200 Subject: [PATCH] read:lists --- src/api/ListsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/ListsController.cs b/src/api/ListsController.cs index b97900b0..87914ca5 100644 --- a/src/api/ListsController.cs +++ b/src/api/ListsController.cs @@ -16,7 +16,7 @@ public ListsController(ListsRepository repository) // [HttpGet("public")] - [HttpGet("private-scoped")] + [HttpGet] [Authorize("read:lists")] [ProducesResponseType(200)] public async Task>> GetLists([FromQuery] int? skip = null, [FromQuery] int? batchSize = null)