Retrospring/app/controllers/static_controller.rb

9 lines
126 B
Ruby
Raw Normal View History

2014-08-01 02:47:25 -07:00
class StaticController < ApplicationController
def index
end
def about
2014-11-30 05:21:11 -08:00
@admins = User.where(admin: true)
2014-08-01 02:47:25 -07:00
end
end