aboutsummaryrefslogtreecommitdiffstats
path: root/models/userlist.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/userlist.go')
-rw-r--r--models/userlist.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/models/userlist.go b/models/userlist.go
index a2a4248482..53e380cd72 100644
--- a/models/userlist.go
+++ b/models/userlist.go
@@ -10,14 +10,14 @@ import (
"code.gitea.io/gitea/modules/log"
)
-//UserList is a list of user.
+// UserList is a list of user.
// This type provide valuable methods to retrieve information for a group of users efficiently.
type UserList []*User
func (users UserList) getUserIDs() []int64 {
userIDs := make([]int64, len(users))
for _, user := range users {
- userIDs = append(userIDs, user.ID) //Considering that user id are unique in the list
+ userIDs = append(userIDs, user.ID) // Considering that user id are unique in the list
}
return userIDs
}
@@ -26,7 +26,7 @@ func (users UserList) getUserIDs() []int64 {
func (users UserList) IsUserOrgOwner(orgID int64) map[int64]bool {
results := make(map[int64]bool, len(users))
for _, user := range users {
- results[user.ID] = false //Set default to false
+ results[user.ID] = false // Set default to false
}
ownerMaps, err := users.loadOrganizationOwners(x, orgID)
if err == nil {
@@ -66,7 +66,7 @@ func (users UserList) loadOrganizationOwners(e Engine, orgID int64) (map[int64]*
func (users UserList) GetTwoFaStatus() map[int64]bool {
results := make(map[int64]bool, len(users))
for _, user := range users {
- results[user.ID] = false //Set default to false
+ results[user.ID] = false // Set default to false
}
tokenMaps, err := users.loadTwoFactorStatus(x)
if err == nil {