0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-11-24 19:42:50 +01:00

Disable Oauth check if oauth disabled (#32368) (#32480)

Partially backport Disable Oauth check if oauth disabled #32368
This commit is contained in:
wxiaoguang 2024-11-12 14:09:47 +08:00 committed by GitHub
parent b48df1082e
commit 26437a03b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,6 +27,9 @@ var (
// CheckOAuthAccessToken returns uid of user from oauth token
func CheckOAuthAccessToken(ctx context.Context, accessToken string) int64 {
if !setting.OAuth2.Enabled {
return 0
}
// JWT tokens require a "."
if !strings.Contains(accessToken, ".") {
return 0