app/controllers/phcmembers/application_controller.rb in phcmembers-3.0.1 vs app/controllers/phcmembers/application_controller.rb in phcmembers-4.0.0
- old
+ new
@@ -1,10 +1,15 @@
module Phcmembers
class ApplicationController < ActionController::Base
# Security Filters
protect_from_forgery with: :exception
-
+
+ # Grab Member Information
+ def get_member_profile_info
+ @members_profile_info = Member::Profile.find(params[:profile_id])
+ end
+
# Load Helpers
helper Phctitleseo::Engine.helpers
helper Phcnotifi::Engine.helpers
end