Sha256: 20bedb4401c0985c0c239824e980ea61d5f5cb8d1bb8b06f9834575ddaa1872e

Contents?: true

Size: 778 Bytes

Versions: 3

Compression:

Stored size: 778 Bytes

Contents

module Phcpresspro
	class ApplicationController < ActionController::Base

		# Prevent CSRF attacks by raising an exception.
		# For APIs, you may want to use :null_session instead.
		before_filter :require_user
		protect_from_forgery with: :exception

		# User Helpers
		def require_user
			unless current_user
				session[:last_url] = request.get? ? url_for(params) : url_for
				redirect_to new_login_url
			end
		end

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

		def new_login_url
			ENV['AUTHROCKET_LOGIN_URL']
			# $ar_login_url
		end
		helper_method :new_login_url

		# Load PHCEngine Helpers
		helper Phctitleseo::Engine.helpers
		helper Phcnotifi::Engine.helpers

	end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcpresspro-2.1.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-2.1.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-2.1.1 app/controllers/phcpresspro/application_controller.rb