Class: Phcpresspro::ApplicationController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/phcpresspro/application_controller.rb

Instance Method Summary collapse

Instance Method Details

#current_userObject



19
20
21
# File 'app/controllers/phcpresspro/application_controller.rb', line 19

def current_user
  @_current_user ||= AuthRocket::Session.from_token(session[:ar_token]).try(:user)
end

#membership_infoObject

Grab Auth Member Information



30
31
32
# File 'app/controllers/phcpresspro/application_controller.rb', line 30

def membership_info
  AuthRocket::Membership.all(user_id: current_user.id).first
end

#new_login_urlObject



24
25
26
# File 'app/controllers/phcpresspro/application_controller.rb', line 24

def 
  ENV['AUTHROCKET_LOGIN_URL']
end

#phcpress_recent_postsObject

PHCPress Widget Helpers



40
41
42
# File 'app/controllers/phcpresspro/application_controller.rb', line 40

def phcpress_recent_posts
  @recent_posts = Articles::Post.all
end

#require_userObject

AuthRocket User Helpers



11
12
13
14
15
16
17
# File 'app/controllers/phcpresspro/application_controller.rb', line 11

def require_user
  unless current_user
    params.permit!
    session[:last_url] = request.get? ? url_for(params) : url_for
    redirect_to 
  end
end