Browse Source

Reliable selection of admin user (#22509) (#22511)

Backport #22509

Co-authored-by: Sybren <122987084+drsybren@users.noreply.github.com>
tags/v1.18.2
John Olheiser 1 year ago
parent
commit
e6e2c2f4a4
No account linked to committer's email address
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      models/user/user.go

+ 4
- 1
models/user/user.go View File

@@ -1227,7 +1227,10 @@ func GetUserByOpenID(uri string) (*User, error) {
// GetAdminUser returns the first administrator
func GetAdminUser() (*User, error) {
var admin User
has, err := db.GetEngine(db.DefaultContext).Where("is_admin=?", true).Get(&admin)
has, err := db.GetEngine(db.DefaultContext).
Where("is_admin=?", true).
Asc("id"). // Reliably get the admin with the lowest ID.
Get(&admin)
if err != nil {
return nil, err
} else if !has {

Loading…
Cancel
Save