Sha256: 87f7facc28725b603240e451e426f468622cb21c7a53b31dd4fe82bcd9945e43
Contents?: true
Size: 1.69 KB
Versions: 3
Compression:
Stored size: 1.69 KB
Contents
require_dependency "phcmemberspro/application_controller" module Phcmemberspro class Directory::CategoriesController < ApplicationController # Security & Action Filters # before_filter :authenticate_user! layout 'layouts/phcmemberspro/directory/directory_all.html.erb' before_action :set_directory_category, only: [:edit, :update, :destroy] # Directory Category Index def index @directory_categories = Directory::Category.scoped_to(current_account).order('catname ASC') end # Directory Category Details def show end # New Directory Category def new @directory_category = Directory::Category.scoped_to(current_account).new end # Edit Directory Category def edit end # Create Action def create @directory_category = Directory::Category.scoped_to(current_account).new(directory_category_params) if @directory_category.save redirect_to directory_categories_path, notice: 'Category was successfully created.' else render :new end end # Update Action def update if @directory_category.scoped_to(current_account).update(directory_category_params) redirect_to directory_categories_path, notice: 'Category was successfully updated.' else render :edit end end # Delete Action def destroy @directory_category.scoped_to(current_account).destroy redirect_to directory_categories_path, notice: 'Category was successfully destroyed.' end private # Common Callbacks def set_directory_category @directory_category = Directory::Category.scoped_to(current_account).find(params[:id]) end # whitelist def directory_category_params params.require(:directory_category).permit(:catname, :account_id) end end end
Version data entries
3 entries across 3 versions & 1 rubygems