summaryrefslogtreecommitdiffstats
path: root/routers/web/org/setting/runners.go
blob: fe05709237dfc1188a8f640970b9bc66c647d2af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package setting

import (
	"code.gitea.io/gitea/services/context"
)

func RedirectToDefaultSetting(ctx *context.Context) {
	ctx.Redirect(ctx.Org.OrgLink + "/settings/actions/runners")
}