1
0
Fork 0
forked from OpenNeo/impress
impress/app/controllers/application_controller.rb
2010-10-18 17:58:45 -04:00

19 lines
319 B
Ruby

class ApplicationController < ActionController::Base
protect_from_forgery
helper_method :current_user, :user_signed_in?
protected
def current_user
@current_user ||= warden.authenticate
end
def user_signed_in?
current_user ? true : false
end
def warden
env['warden']
end
end