2023-02-01 05:53:04 -07:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2024-02-27 00:12:22 -07:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2023-02-01 05:53:04 -07:00
|
|
|
)
|
|
|
|
|
2023-04-27 18:08:47 -06:00
|
|
|
func RedirectToDefaultSetting(ctx *context.Context) {
|
2023-05-30 19:39:54 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/actions/runners")
|
2023-02-01 05:53:04 -07:00
|
|
|
}
|