retrospring/app/controllers/static_controller.rb

9 lines
137 B
Ruby
Raw Normal View History

2014-08-01 11:47:25 +02:00
class StaticController < ApplicationController
def index
end
def about
2014-11-30 16:41:28 +01:00
@admins = User.where(admin: true).order(:id)
2014-08-01 11:47:25 +02:00
end
end