forked from forgejo/forgejo
Return nicer error for ForcePrivate (#17971)
This commit is contained in:
parent
8e9140dd69
commit
b4782e24d2
2 changed files with 2 additions and 1 deletions
|
@ -144,7 +144,7 @@ func SettingsPost(ctx *context.Context) {
|
|||
visibilityChanged := repo.IsPrivate != form.Private
|
||||
// when ForcePrivate enabled, you could change public repo to private, but only admin users can change private to public
|
||||
if visibilityChanged && setting.Repository.ForcePrivate && !form.Private && !ctx.User.IsAdmin {
|
||||
ctx.ServerError("Force Private enabled", errors.New("cannot change private repository to public"))
|
||||
ctx.RenderWithErr(ctx.Tr("form.repository_force_private"), tplSettingsOptions, form)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue