This commit is contained in:
nilsding 2014-11-30 16:41:28 +01:00
parent 4220091eae
commit 842e9059e7
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ class StaticController < ApplicationController
end
def about
@admins = User.where(admin: true)
@admins = User.where(admin: true).order(:id)
end
end