1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

More MixedCase consts

This commit is contained in:
Sandro Santilli
2016-11-07 17:08:21 +01:00
parent 80eea77953
commit 0b62aeb495
4 changed files with 9 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ const (
SETTINGS_OPTIONS base.TplName = "repo/settings/options"
COLLABORATION base.TplName = "repo/settings/collaboration"
GITHOOKS base.TplName = "repo/settings/githooks"
GITHOOK_EDIT base.TplName = "repo/settings/githook_edit"
GithookEdit base.TplName = "repo/settings/githook_edit"
DEPLOY_KEYS base.TplName = "repo/settings/deploy_keys"
)
@@ -425,7 +425,7 @@ func GitHooksEdit(ctx *context.Context) {
return
}
ctx.Data["Hook"] = hook
ctx.HTML(200, GITHOOK_EDIT)
ctx.HTML(200, GithookEdit)
}
func GitHooksEditPost(ctx *context.Context) {