Retrospring/app/controllers/static_controller.rb

9 lines
137 B
Ruby

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