remove unused method

This commit is contained in:
Cubicroot 2021-07-25 18:07:27 +02:00
parent 87ea474b47
commit 562ee7aa4a

View file

@ -224,13 +224,3 @@ func getAdmin() *model.User {
}
return nil
}
func countAdmins() uint64 {
count := uint64(0)
for _, user := range TestUsers {
if user.IsAdmin {
count += 1
}
}
return count
}