summaryrefslogtreecommitdiffstats
path: root/routers/private/manager_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/private/manager_windows.go')
-rw-r--r--routers/private/manager_windows.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/routers/private/manager_windows.go b/routers/private/manager_windows.go
index 244dbbe4df..f6c9b7ec8f 100644
--- a/routers/private/manager_windows.go
+++ b/routers/private/manager_windows.go
@@ -11,12 +11,13 @@ import (
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/graceful"
+ "code.gitea.io/gitea/modules/private"
)
// Restart is not implemented for Windows based servers as they can't fork
func Restart(ctx *context.PrivateContext) {
- ctx.JSON(http.StatusNotImplemented, map[string]interface{}{
- "err": "windows servers cannot be gracefully restarted - shutdown and restart manually",
+ ctx.JSON(http.StatusNotImplemented, private.Response{
+ Err: "windows servers cannot be gracefully restarted - shutdown and restart manually",
})
}