2023-02-01 18:23:04 +05:30
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
2023-04-28 05:38:47 +05:30
|
|
|
func RedirectToDefaultSetting(ctx *context.Context) {
|
2023-05-31 07:09:54 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/actions/runners")
|
2023-02-01 18:23:04 +05:30
|
|
|
}
|