retrospring/app/controllers/static_controller.rb
2014-11-30 16:41:28 +01:00

8 lines
137 B
Ruby

class StaticController < ApplicationController
def index
end
def about
@admins = User.where(admin: true).order(:id)
end
end