UX: sort admins and moderators by last seen date on /about page

UX: only show active admins and moderators on /about page
This commit is contained in:
Arpit Jalan
2019-01-15 17:25:22 +05:30
parent ff8f9dc1c9
commit c4422fdc13
4 changed files with 44 additions and 7 deletions

View File

@@ -36,11 +36,13 @@ class About
def moderators
@moderators ||= User.where(moderator: true, admin: false)
.human_users
.order(:username_lower)
.order("last_seen_at DESC")
end
def admins
@admins ||= User.where(admin: true).human_users.order(:username_lower)
@admins ||= User.where(admin: true)
.human_users
.order("last_seen_at DESC")
end
def stats