Filter procedure on /demo page for staging

This commit is contained in:
Xavier J 2016-06-14 15:21:32 +02:00
parent eb1e4fe7ce
commit 5c2902bda5

View file

@ -6,7 +6,7 @@ class DemoController < ApplicationController
return redirect_to root_path if Rails.env.production?
smart_listing_create :procedures,
Procedure.where(archived: false),
Procedure.where(archived: false, published: true),
partial: "demo/list",
array: true
end