afimb/chouette2

View on GitHub
app/controllers/api/v1/time_tables_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
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