app/controllers/phcmemberspro/member/profiles_controller.rb in phcmemberspro-57.0.0 vs app/controllers/phcmemberspro/member/profiles_controller.rb in phcmemberspro-58.0.0
- old
+ new
@@ -1,14 +1,15 @@
require_dependency "phcmemberspro/application_controller"
module Phcmemberspro
class Member::ProfilesController < ApplicationController
-
- # Security & Action Filters
+
+ # Security, Layouts & Action Filters
skip_before_action :phcmemberspro_get_member_profile_info
before_action :authenticate_user!
before_action :set_paper_trail_whodunnit
before_action :set_member_profile, only: [:show, :edit, :update, :destroy]
+ layout "phcmemberspro/application_full_width", :only => [ :show ]
# INDEX - Member Profile
def index
@member_profiles = Member::Profile.where(org_id: current_user.org_id)
end