summaryrefslogtreecommitdiffstats
path: root/routers/web/user/setting/runner.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/web/user/setting/runner.go')
-rw-r--r--routers/web/user/setting/runner.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/routers/web/user/setting/runner.go b/routers/web/user/setting/runner.go
new file mode 100644
index 0000000..2bb10cc
--- /dev/null
+++ b/routers/web/user/setting/runner.go
@@ -0,0 +1,13 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
+package setting
+
+import (
+ "code.gitea.io/gitea/modules/setting"
+ "code.gitea.io/gitea/services/context"
+)
+
+func RedirectToDefaultSetting(ctx *context.Context) {
+ ctx.Redirect(setting.AppSubURL + "/user/settings/actions/runners")
+}