1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Fix bug when a token is given public only (#32204) (#32218)

Backport #32204
This commit is contained in:
Lunny Xiao
2024-10-09 10:16:37 +08:00
committed by GitHub
parent 4815c4aeae
commit 56051d9b3b
11 changed files with 178 additions and 57 deletions

View File

@@ -398,6 +398,10 @@ func (u *User) IsIndividual() bool {
return u.Type == UserTypeIndividual
}
func (u *User) IsUser() bool {
return u.Type == UserTypeIndividual || u.Type == UserTypeBot
}
// IsBot returns whether or not the user is of type bot
func (u *User) IsBot() bool {
return u.Type == UserTypeBot