rails-caf/app/controllers/home_controller.rb
2023-01-29 20:25:26 +00:00

14 lines
343 B
Ruby

class HomeController < ApplicationController
def index
if user_signed_in?
if current_user.admin?
@file = YAML.load_file(Rails.root.to_s + '/config/caf_text.yml')
@objectives = @file["objectives"]
else
end
end
@companies = Company.all
end
end