13 lines
238 B
Ruby
Executable File
13 lines
238 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
|