fix(go): show LastLogin on `Manage Users` page
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2023-09-04 11:33:50 +02:00
parent f4bd798821
commit fd2916e73e
Signed by: wanderer
SSH Key Fingerprint: SHA256:MdCZyJ2sHLltrLBp0xQO0O1qTW9BT/xl5nXkDvhlMCI

View File

@ -105,6 +105,7 @@ func ManageUsers() echo.HandlerFunc {
IsAdmin: u.IsAdmin,
CreatedAt: u.CreatedAt,
UpdatedAt: u.UpdatedAt,
LastLogin: u.LastLogin,
}
allUsers = append(allUsers, usr)