Sha256: 6e62d1e9a56e24c4bd6ef203c644b4b1756434321261692390a615a7a3e3b421
Contents?: true
Size: 1.66 KB
Versions: 29
Compression:
Stored size: 1.66 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
29 entries across 29 versions & 1 rubygems