aboutsummaryrefslogtreecommitdiffstats
path: root/routers/web/admin/runners.go
blob: 4b89237364ee9a3d9875dce35a1c2bb91e7d3611 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package admin

import (
	"code.gitea.io/gitea/modules/setting"
	"code.gitea.io/gitea/services/context"
)

func RedirectToDefaultSetting(ctx *context.Context) {
	ctx.Redirect(setting.AppSubURL + "/-/admin/actions/runners")
}