Sha256: 6943f9b97d51a7d9d8c12830275377af355fa29aad5365d9b99e89ef4c6fbaae

Contents?: true

Size: 1.88 KB

Versions: 2

Compression:

Stored size: 1.88 KB

Contents

require_dependency "phcmembers/application_controller"

module Phcmembers
  class Directory::CategoriesController < ApplicationController

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

    # INDEX - Directory Category
    def index
      @directory_categories = Directory::Category.all
    end

    # DETAILED - Directory Category
    def show
      @directory_category = Directory::Category.find(params[:id])
      @versions = PaperTrail::Version.where(item_id: params[:id], item_type: 'Phcmembers::Directory::Category')
    end

    # NEW - Directory Category
    def new
      @directory_category = Directory::Category.new
    end

    # EDIT - Directory Category
    def edit
    end

    # POST - Directory Category
    def create
      @directory_category = Directory::Category.new(directory_category_params)
      if @directory_category.save
        redirect_to directory_categories_url, notice: 'Category was successfully created.'
        else
          render :new
      end
    end

    # PATCH/PUT - Directory Category
    def update
      if @directory_category.update(directory_category_params)
        redirect_to directory_categories_url, notice: 'Category was successfully updated.'
        else
          render :edit
      end
    end

    # DELETE - Directory Category
    def destroy
      @directory_category.destroy
      redirect_to directory_categories_url, notice: 'Category was successfully destroyed.'
    end

    private

    # Common Callbacks
    def set_directory_category
      @directory_category = Directory::Category.find(params[:id])
    end

    # Whitelist
    def directory_category_params
      params.require(:directory_category).permit(:catname, :slug, :user_id, :user_name)
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phcmembers-12.1.0 app/controllers/phcmembers/directory/categories_controller.rb
phcmembers-12.0.1 app/controllers/phcmembers/directory/categories_controller.rb