2023-01-31 09:45:19 +08:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
)
|
|
|
|
|
|
2023-04-28 08:08:47 +08:00
|
|
|
func RedirectToDefaultSetting(ctx *context.Context) {
|
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/actions/runners")
|
2023-01-31 09:45:19 +08:00
|
|
|
}
|