Sha256: 6f64519796adf8b5a922ac826db6da3d081257cb4dab61b6385e3aefad92ca3a
Contents?: true
Size: 455 Bytes
Versions: 9
Compression:
Stored size: 455 Bytes
Contents
require_dependency "phcscriptcdnpro/application_controller" module Phcscriptcdnpro class Frontend::ListingsController < ApplicationController # Change Layout layout '/layouts/phcscriptcdnpro/frontend.html.erb' # Script Listing Index def index @script_listings_index = Script::Listing.all end # Script Listing Post def show @script_listings_single = Script::Listing.find(params[:id]) end end end
Version data entries
9 entries across 9 versions & 1 rubygems