clarion/app/models/volunteer_search.rb

9 lines
268 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_teams).where volunteer_teams: {id: value} }
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