Retrospring/app/controllers/static_controller.rb

9 lines
126 B
Ruby

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