Class: Phcscriptcdnpro::Frontend::ListingsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/phcscriptcdnpro/frontend/listings_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#user_for_paper_trail

Instance Method Details

#indexObject

Script Listing Index



10
11
12
# File 'app/controllers/phcscriptcdnpro/frontend/listings_controller.rb', line 10

def index
  @script_listings_index = Script::Listing.where(org_id: current_user.org_id)
end

#showObject

Script Listing Post



15
16
17
# File 'app/controllers/phcscriptcdnpro/frontend/listings_controller.rb', line 15

def show
  @script_listings_single = Script::Listing.friendly.find(params[:id])
end