clarion/app/models/volunteer_search.rb

9 lines
266 B
Ruby
Raw Permalink Normal View History

2016-10-09 07:17:34 +03:00
class VolunteerSearch
include SearchObject.module(:sorting)
option(:volunteer_team_id) { |scope, value| scope.joins(:volunteer_team).where volunteer_team: {id: value} }
2016-10-09 07:17:34 +03:00
2019-04-28 21:10:54 +03:00
sort_by "name"
config[:defaults]["sort"] = "#{config[:sort_attributes].first} asc"
2016-10-09 07:17:34 +03:00
end