blob: 669318bad7cdd492104b6c94578cf4dab688d591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class Api::V1::TimeTablesController < Api::V1::ChouetteController
defaults :resource_class => Chouette::TimeTable, :finder => :find_by_objectid!
protected
def collection
@time_tables ||= @referential.time_tables.search(params[:q]).result(:distinct => true)
end
end
|