diff options
author | Unknwon <u@gogs.io> | 2017-03-13 06:00:37 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-03-13 06:00:37 -0400 |
commit | e1dcd1105168e9a66f5bfcdb3e169580ad21a2e3 (patch) | |
tree | 8a5d213bd0afe8df8f88e8d44b6825400a448bc6 /routers | |
parent | 24734a33e72dbdc1da4f7341cb2cf62521ce53f8 (diff) |
repo/settings: improve Git hook editor
Diffstat (limited to 'routers')
-rw-r--r-- | routers/repo/setting.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/routers/repo/setting.go b/routers/repo/setting.go index 015c42c1..6ccd058a 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -499,6 +499,7 @@ func SettingsGitHooks(ctx *context.Context) { func SettingsGitHooksEdit(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings.githooks") ctx.Data["PageIsSettingsGitHooks"] = true + ctx.Data["RequireSimpleMDE"] = true name := ctx.Params(":name") hook, err := ctx.Repo.GitRepo.GetHook(name) @@ -530,7 +531,7 @@ func SettingsGitHooksEditPost(ctx *context.Context) { ctx.Handle(500, "hook.Update", err) return } - ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks/git") + ctx.Redirect(ctx.Data["Link"].(string)) } func SettingsDeployKeys(ctx *context.Context) { |