commit 132c73883f2fc31f41b73191c975fc4d8ccb139d parent eafd73c29204072050591a0579e0cedb174e6d38 Author: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Fri, 13 Jan 2023 17:07:52 +0100 [bugfix] Mount bookmarks endpoint correctly (#1338) Diffstat:
M | internal/api/client/bookmarks/bookmarks.go | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/internal/api/client/bookmarks/bookmarks.go b/internal/api/client/bookmarks/bookmarks.go @@ -26,8 +26,8 @@ import ( ) const ( - // BasePath is the base path for serving the bookmarks API - BasePath = "/api/v1/bookmarks" + // BasePath is the base path for serving the bookmarks API, minus the 'api' prefix + BasePath = "/v1/bookmarks" ) type Module struct {