Sha256: f806c607c1d15d52c3ef88b891d935b06f331a772c4bf700a548d4bab7866499

Contents?: true

Size: 491 Bytes

Versions: 1

Compression:

Stored size: 491 Bytes

Contents

require_dependency "phcmembers/application_controller"

module Phcmembers
	class Directory::CategorylistingsController < ApplicationController

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

		# INDEX - Directory Category/Listings
		def index
			@directory_categorylistings = Directory::Categorylisting.all
		end

		# DETAILED - Directory Category/Listings
		def show
		end

	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcmembers-4.0.0 app/controllers/phcmembers/directory/categorylistings_controller.rb