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

17 lines
362 B
Ruby
Raw Normal View History

2014-08-07 07:42:22 +03:00
module Api
module V1
class ConferencesController < Api::BaseController
2015-10-25 00:36:23 +03:00
load_resource find_by: :short_title
2014-08-07 07:42:22 +03:00
respond_to :json
2014-08-07 07:42:22 +03:00
def index
2015-10-25 00:36:23 +03:00
render json: @conferences, serializer: ConferencesArraySerializer
end
def show
render json: [@conference], serializer: ConferencesArraySerializer
2014-08-07 07:42:22 +03:00
end
end
end
end