diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-03-22 17:29:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 17:29:07 +0800 |
commit | 2b55422cd71b0b325f054646de5cebf39b72b502 (patch) | |
tree | 27e71f4e6e27fd5bbb2c13a27e572ef0b41a1e6d /routers/web/repo/http.go | |
parent | 80fd25524e13dedbdc3527b32d008de152213a89 (diff) | |
download | gitea-2b55422cd71b0b325f054646de5cebf39b72b502.tar.gz gitea-2b55422cd71b0b325f054646de5cebf39b72b502.zip |
Fix the bug: deploy key with write access can not push (#19010)
Use DeployKeyID to replace the IsDeployKey, then CanWriteCode uses the DeployKeyID to check the write permission.
Diffstat (limited to 'routers/web/repo/http.go')
-rw-r--r-- | routers/web/repo/http.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/routers/web/repo/http.go b/routers/web/repo/http.go index 989e71a3cf..b706330d6d 100644 --- a/routers/web/repo/http.go +++ b/routers/web/repo/http.go @@ -222,7 +222,6 @@ func httpBase(ctx *context.Context) (h *serviceHandler) { models.EnvRepoName + "=" + reponame, models.EnvPusherName + "=" + ctx.Doer.Name, models.EnvPusherID + fmt.Sprintf("=%d", ctx.Doer.ID), - models.EnvIsDeployKey + "=false", models.EnvAppURL + "=" + setting.AppURL, } |