demarches-normaliennes/app/controllers/demo_controller.rb
2016-01-07 11:41:03 +01:00

11 lines
332 B
Ruby

class DemoController < ApplicationController
include SmartListing::Helper::ControllerExtensions
helper SmartListing::Helper
def index
smart_listing_create :procedures,
Procedure.where(archived: false),
partial: "demo/list",
array: true
end
end