diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-10-08 17:51:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 12:51:09 +0300 |
commit | d6d3c96e6555fc91b3e2ef21f4d8d7475564bb3e (patch) | |
tree | 710dd914452b0c11b39aa6cbc9f431302af0b1f9 /services | |
parent | d3ada91ea41b2f2eb58d637ab4c0a2dde07f20ce (diff) | |
download | gitea-d6d3c96e6555fc91b3e2ef21f4d8d7475564bb3e.tar.gz gitea-d6d3c96e6555fc91b3e2ef21f4d8d7475564bb3e.zip |
Fix bug when a token is given public only (#32204)
Diffstat (limited to 'services')
-rw-r--r-- | services/context/api.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/services/context/api.go b/services/context/api.go index 84da526e74..00cfd6afd9 100644 --- a/services/context/api.go +++ b/services/context/api.go @@ -35,9 +35,10 @@ type APIContext struct { ContextUser *user_model.User // the user which is being visited, in most cases it differs from Doer - Repo *Repository - Org *APIOrganization - Package *Package + Repo *Repository + Org *APIOrganization + Package *Package + PublicOnly bool // Whether the request is for a public endpoint } func init() { |