[#1360] Upgrade SmartListing to fork of 1.2.1

This commit is contained in:
Frederic Merizen 2018-01-23 16:21:43 +01:00
parent af0640d37e
commit 506a505477
9 changed files with 136 additions and 7 deletions

View file

@ -109,4 +109,31 @@ class ApplicationController < ActionController::Base
})
end
end
def permit_smart_listing_params
# FIXME: remove when
# https://github.com/Sology/smart_listing/issues/134
# is fixed
self.params = params.permit(
dossiers_smart_listing:
[
:page,
:per_page,
{ sort: [:id, :'procedure.libelle', :state, :updated_at] }
],
gestionnaires_smart_listing:
[
:page,
:per_page,
{ sort: [:email] }
],
procedures_smart_listing:
[
:page,
:per_page,
{ sort: [:id, :libelle, :published_at] }
]
)
# END OF FIXME
end
end