demarches-normaliennes/app/controllers/demo_controller.rb
2017-06-13 10:35:16 +02:00

13 lines
368 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.where(archived: false, published: true).order("id DESC"),
partial: "demo/list",
array: true
end
end