mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
c2217670dd
Resolve #32181 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
14 lines
315 B
Go
14 lines
315 B
Go
// 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")
|
|
}
|