1
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-09-18 23:18:02 +00:00

Don't list root repository on compare page if pulls not allowed ()

Fix 
This commit is contained in:
Lunny Xiao
2023-04-19 23:16:46 +08:00
committed by GitHub
parent f30cc9faa9
commit 15d6638c15

@@ -459,7 +459,7 @@ func ParseCompareInfo(ctx *context.Context) *CompareInfo {
rootRepo.ID != ci.HeadRepo.ID &&
rootRepo.ID != baseRepo.ID {
canRead := access_model.CheckRepoUnitUser(ctx, rootRepo, ctx.Doer, unit.TypeCode)
if canRead {
if canRead && rootRepo.AllowsPulls() {
ctx.Data["RootRepo"] = rootRepo
if !fileOnly {
branches, tags, err := getBranchesAndTagsForRepo(ctx, rootRepo)