osem-fcy/app/controllers/api/v1/conferences_controller.rb
Ancor Gonzalez Sosa 27017a4823 WIP: first prototype of the JSON API.
* Tests not included, so I cannot prove that it works
2013-07-04 14:02:50 +02:00

7 lines
133 B
Ruby

class Api::V1::ConferencesController < Api::BaseController
respond_to :json
def index
respond_with Conference.all
end
end