diff options
Diffstat (limited to 'internal/api/client/reports/reportget.go')
-rw-r--r-- | internal/api/client/reports/reportget.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/reports/reportget.go b/internal/api/client/reports/reportget.go index 0d5d16da2..4a9b06664 100644 --- a/internal/api/client/reports/reportget.go +++ b/internal/api/client/reports/reportget.go @@ -90,5 +90,5 @@ func (m *Module) ReportGETHandler(c *gin.Context) { return } - c.JSON(http.StatusOK, report) + apiutil.JSON(c, http.StatusOK, report) } |