Sha256: bb0b5ed298904bc15498003b713a61959a407132b891038c89b1932dc71b682e
Contents?: true
Size: 591 Bytes
Versions: 4
Compression:
Stored size: 591 Bytes
Contents
require_dependency "phcdevworks_tutorials/application_controller" module PhcdevworksTutorials class Blog::CommandsController < ApplicationController # Layout layout 'phcdevworks_tutorials/frontend' # INDEX def index @phcdevworks_commands_index = Command::Post.where(command_post_status: "published").order("created_at DESC") @phcdevworks_commands_photo_randomizer = Command::Post.order('RANDOM()').limit(1) end # SHOW def show @phcdevworks_commands_single = Command::Post.friendly.find(params[:id]) end end end
Version data entries
4 entries across 4 versions & 1 rubygems