forked from forgejo/forgejo
#2505 Allow to fork and disallow to create PRs for mirrors.
This commit is contained in:
parent
2fdf8fc938
commit
a467184e13
5 changed files with 25 additions and 11 deletions
|
@ -48,7 +48,9 @@ func MustEnableIssues(ctx *middleware.Context) {
|
|||
}
|
||||
|
||||
func MustEnablePulls(ctx *middleware.Context) {
|
||||
if !ctx.Repo.Repository.EnablePulls {
|
||||
if !ctx.Repo.Repository.CanEnablePulls() {
|
||||
ctx.Handle(404, "Unsupported", nil)
|
||||
} else if !ctx.Repo.Repository.EnablePulls {
|
||||
ctx.Handle(404, "MustEnablePulls", nil)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue