From a5b083bafb4364cda489070ffcd3967138fbb0c8 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sat, 22 Apr 2023 21:56:16 +0800 Subject: [PATCH] Fix bug when deleting wiki with no code write permission --- services/wiki/wiki.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/services/wiki/wiki.go b/services/wiki/wiki.go index 9ceb8e58177d..c0183dd2b590 100644 --- a/services/wiki/wiki.go +++ b/services/wiki/wiki.go @@ -321,7 +321,13 @@ func DeleteWikiPage(ctx context.Context, doer *user_model.User, repo *repo_model if err := git.Push(gitRepo.Ctx, basePath, git.PushOptions{ Remote: DefaultRemote, Branch: fmt.Sprintf("%s:%s%s", commitHash.String(), git.BranchPrefix, DefaultBranch), - Env: repo_module.PushingEnvironment(doer, repo), + Env: repo_module.FullPushingEnvironment( + doer, + doer, + repo, + repo.Name+".wiki", + 0, + ), }); err != nil { if git.IsErrPushOutOfDate(err) || git.IsErrPushRejected(err) { return err