osem-fcy/app/controllers/api/v1/conferences_controller.rb

8 lines
133 B
Ruby
Raw Normal View History

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