13 lines
351 B
Ruby
13 lines
351 B
Ruby
class DemoController < ApplicationController
|
|
include SmartListing::Helper::ControllerExtensions
|
|
helper SmartListing::Helper
|
|
|
|
def index
|
|
return redirect_to root_path if Rails.env.production?
|
|
|
|
smart_listing_create :procedures,
|
|
Procedure.published.not_archived.order("id DESC"),
|
|
partial: "demo/list",
|
|
array: true
|
|
end
|
|
end
|