Sha256: 8def97a69a3fb81c2b1f48989254bb5473e849c9d790b61e157216fc1288ff29

Contents?: true

Size: 1.94 KB

Versions: 34

Compression:

Stored size: 1.94 KB

Contents

require_dependency "phcmembers/application_controller"

module Phcmembers
  class Member::ProfilesController < ApplicationController

    # Security & Action Filters
    before_action :authenticate_user!
    before_action :set_paper_trail_whodunnit
    before_action :set_member_profile, only: [:show, :edit, :update, :destroy]

    # INDEX - Member Profile
    def index
      @member_profiles = Member::Profile.all
    end

    # DETAILED PROFILE - Member Profile
    def show
      @member_profile = Member::Profile.find(params[:id])
      @member_profile_versions = Phcmembers::ProfileVersions.where(item_id: @member_profile, item_type: 'Phcmembers::Member::Profile')
    end

    # NEW FORM - Member Profile
    def new
      @member_profile = Member::Profile.new
      @member_profile.user_id = current_user.id

    end

    # EDIT FORM - Member Profile
    def edit
    end

    # POST - Member Profile
    def create
      @member_profile = Member::Profile.new(member_profile_params)
      @member_profile.user_id = current_user.id
      if @member_profile.save
        redirect_to member_profiles_url, notice: 'Profile was successfully created.'
        else
          render :new
      end
    end

    # PATCH/PUT - Member Profile
    def update
      @member_profile.user_id = current_user.id
      if @member_profile.update(member_profile_params)
        redirect_to member_profiles_url, notice: 'Profile was successfully updated.'
        else
          render :edit
      end
    end

    # DELETE - Member Profile
    def destroy
      @member_profile.destroy
      redirect_to member_profiles_url, notice: 'Profile was successfully destroyed.'
    end

    private

    # Common Callbacks
    def set_member_profile
      @member_profile = Member::Profile.find(params[:id])
    end

    # Whitelist
    def member_profile_params
      params.require(:member_profile).permit(:mfirstname, :mlastname, :mtitle, :memail, :mphone, :mnotes, :slug, :user_id)
    end

  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
phcmembers-51.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-50.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-49.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-46.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-45.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-44.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-43.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-42.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-41.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-40.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-39.2.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-39.1.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-39.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-38.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-37.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-36.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-35.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-34.0.1 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-33.1.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-33.0.0 app/controllers/phcmembers/member/profiles_controller.rb