Files
railsgoat/app/controllers/dashboard_controller.rb
T
2017-01-19 13:59:14 -06:00

27 lines
481 B
Ruby

class DashboardController < ApplicationController
skip_before_action :has_info
def home
@user = current_user
# See if the user has a font preference
if params[:font]
cookies[:font] = params[:font]
end
end
def change_graph
self.try(params[:graph])
end
def bar_graph
render :partial => "layouts/dashboard/bar_graph"
end
def pie_charts
@user = current_user
render :partial => "layouts/dashboard/dashboard_stats"
end
end