Class: Phcpresspro::ApplicationController
- Inherits:
-
ActionController::Base
- Object
- ActionController::Base
- Phcpresspro::ApplicationController
- Defined in:
- app/controllers/phcpresspro/application_controller.rb
Direct Known Subclasses
Phcpresspro::Articles::PostsController, Frontend::ArticlesController, Modules::CategoriesController, Modules::ConnectionsController
Instance Method Summary collapse
- #current_user ⇒ Object
-
#membership_info ⇒ Object
Grab Auth Member Information.
- #new_login_url ⇒ Object
-
#require_user ⇒ Object
AuthRocket User Helpers.
Instance Method Details
#current_user ⇒ Object
16 17 18 |
# File 'app/controllers/phcpresspro/application_controller.rb', line 16 def current_user @_current_user ||= AuthRocket::Session.from_token(session[:ar_token]).try(:user) end |
#membership_info ⇒ Object
Grab Auth Member Information
27 28 29 |
# File 'app/controllers/phcpresspro/application_controller.rb', line 27 def membership_info AuthRocket::Membership.all(user_id: current_user.id).first end |
#new_login_url ⇒ Object
21 22 23 |
# File 'app/controllers/phcpresspro/application_controller.rb', line 21 def new_login_url ENV['AUTHROCKET_LOGIN_URL'] end |
#require_user ⇒ Object
AuthRocket User Helpers
8 9 10 11 12 13 14 |
# File 'app/controllers/phcpresspro/application_controller.rb', line 8 def require_user unless current_user params.permit! session[:last_url] = request.get? ? url_for(params) : url_for redirect_to new_login_url end end |