Sha256: 50a9051ff071cfc2130e3106eb2606d3e1d8b30e34ceaa4912b0025d5cd52a5a
Contents?: true
Size: 1.83 KB
Versions: 7
Compression:
Stored size: 1.83 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) end end end
Version data entries
7 entries across 7 versions & 1 rubygems