From 92bf1f779bd86756f78f94283e6085e6fe2f5de0 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:45:50 +0100 Subject: [chore] Expose move endpoint again, small settings panel fixes (#2752) --- internal/api/client/accounts/accountmove.go | 2 -- internal/api/client/accounts/accounts.go | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'internal/api') diff --git a/internal/api/client/accounts/accountmove.go b/internal/api/client/accounts/accountmove.go index 4f311e106..3698c06a3 100644 --- a/internal/api/client/accounts/accountmove.go +++ b/internal/api/client/accounts/accountmove.go @@ -31,8 +31,6 @@ import ( // // Move your account to another account. // -// NOT IMPLEMENTED YET! -// // --- // tags: // - accounts diff --git a/internal/api/client/accounts/accounts.go b/internal/api/client/accounts/accounts.go index 000c27d78..c94fbfbaa 100644 --- a/internal/api/client/accounts/accounts.go +++ b/internal/api/client/accounts/accounts.go @@ -113,5 +113,5 @@ func (m *Module) Route(attachHandler func(method string, path string, f ...gin.H // migration handlers attachHandler(http.MethodPost, AliasPath, m.AccountAliasPOSTHandler) - // attachHandler(http.MethodPost, MovePath, m.AccountMovePOSTHandler) // todo: enable this only when Move is completed + attachHandler(http.MethodPost, MovePath, m.AccountMovePOSTHandler) } -- cgit v1.2.3