Sha256: 61bc298492b3b74d40023279c556092d9bc1f4300a9795c0e6b9009ab03775dc

Contents?: true

Size: 1.77 KB

Versions: 9

Compression:

Stored size: 1.77 KB

Contents

require_dependency "phcmembers/application_controller"

module Phcmembers
  class Member::ProfilesController < ApplicationController

    # Security & Action Filters
    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
    end

    # EDIT FORM - Member Profile
    def edit
    end

    # POST - Member Profile
    def create
      @member_profile = Member::Profile.new(member_profile_params)
      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
      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, :user_name)
    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
phcmembers-17.1.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-17.0.1 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-16.2.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-16.1.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-16.0.2 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-16.0.1 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-16.0.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-15.1.0 app/controllers/phcmembers/member/profiles_controller.rb
phcmembers-15.0.0 app/controllers/phcmembers/member/profiles_controller.rb