retrospring/app/controllers/static_controller.rb
2014-11-30 14:21:11 +01:00

8 lines
126 B
Ruby

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