Add edit option for README.md (#28071)

Fix #28059


![grafik](07adc216-954e-486b-bfda-df3bc15f2089)
This commit is contained in:
JakobDev 2023-11-20 12:47:55 +01:00 committed by GitHub
parent eae555ff23
commit 08552f0076
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -331,6 +331,10 @@ func renderReadmeFile(ctx *context.Context, subfolder string, readmeFile *git.Tr
ctx.Data["FileContent"] = buf.String()
}
if !fInfo.isLFSFile && ctx.Repo.CanEnableEditor(ctx, ctx.Doer) {
ctx.Data["CanEditReadmeFile"] = true
}
}
func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink string) {