14 lines
322 B
Go
14 lines
322 B
Go
|
// 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"
|
||
|
)
|
||
|
|
||
|
func RedirectToDefaultSetting(ctx *context.Context) {
|
||
|
ctx.Redirect(setting.AppSubURL + "/user/settings/actions/runners")
|
||
|
}
|