1
0
Fork 0
forked from forgejo/forgejo

#2505 Allow to fork and disallow to create PRs for mirrors.

This commit is contained in:
Download-Fritz 2016-02-19 20:33:06 +01:00
parent 2fdf8fc938
commit a467184e13
5 changed files with 25 additions and 11 deletions

View file

@ -167,7 +167,7 @@ func RepoAssignment(args ...bool) macaron.Handler {
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner()
ctx.Data["IsRepositoryAdmin"] = ctx.Repo.IsAdmin()
ctx.Data["IsRepositoryPusher"] = ctx.Repo.IsPusher()
ctx.Data["CanPullRequest"] = ctx.Repo.IsAdmin() && repo.BaseRepo != nil && repo.BaseRepo.EnablePulls
ctx.Data["CanPullRequest"] = ctx.Repo.IsAdmin() && repo.BaseRepo != nil && repo.BaseRepo.AllowsPulls()
ctx.Data["DisableSSH"] = setting.DisableSSH
ctx.Data["CloneLink"] = repo.CloneLink()