From c50515e79987f1c4ab58486851beba403febafe7 Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 5 Feb 2025 14:46:08 +0100 Subject: [PATCH] feat(http): added missing web prefix to tags endpoint --- backend/pkg/tags/api/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pkg/tags/api/handlers.go b/backend/pkg/tags/api/handlers.go index c9a92bd2e..6aa6e00b2 100644 --- a/backend/pkg/tags/api/handlers.go +++ b/backend/pkg/tags/api/handlers.go @@ -33,7 +33,7 @@ func NewHandlers(log logger.Logger, responser *api.Responser, tokenizer *token.T func (e *handlersImpl) GetAll() []*api.Description { return []*api.Description{ - {"/v1/tags", e.getTags, "GET"}, + {"/v1/web/tags", e.getTags, "GET"}, } }