Files
railsgoat/app/controllers/dashboard_controller.rb
T
John Poulin e760fc0087 merging
2014-04-17 20:03:14 -04:00

15 lines
244 B
Ruby
Executable File

class DashboardController < ApplicationController
skip_before_filter :has_info
def home
@user = current_user
# See if the user has a font preference
if params[:font]
cookies[:font] = params[:font]
end
end
end