diff options
Diffstat (limited to 'internal/api/client/lists/listsget.go')
-rw-r--r-- | internal/api/client/lists/listsget.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/lists/listsget.go b/internal/api/client/lists/listsget.go index f16152a9d..6bfc3c883 100644 --- a/internal/api/client/lists/listsget.go +++ b/internal/api/client/lists/listsget.go @@ -77,5 +77,5 @@ func (m *Module) ListsGETHandler(c *gin.Context) { return } - c.JSON(http.StatusOK, lists) + apiutil.JSON(c, http.StatusOK, lists) } |