feat(http): added missing web prefix to tags endpoint

This commit is contained in:
Alexander 2025-02-05 14:46:08 +01:00
parent d29c7f20a4
commit c50515e799

View file

@ -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"},
}
}