13 lines
549 B
Ruby
13 lines
549 B
Ruby
class EventSearch
|
|
include SearchObject.module(:sorting)
|
|
|
|
option(:title) { |scope, value| scope.where title: value }
|
|
option(:language) { |scope, value| scope.where language: value }
|
|
option(:track_id) { |scope, value| scope.where track_id: value }
|
|
option(:event_type_id) { |scope, value| scope.where event_type_id: value }
|
|
option(:status) { |scope, value| scope.joins(:proposition).where(propositions: {status: value}) }
|
|
|
|
sort_by 'title'
|
|
config[:defaults]['sort'] = "#{config[:sort_attributes].first} asc"
|
|
end
|