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

19 lines
446 B
Ruby
Raw Normal View History

2014-08-07 07:42:22 +03:00
module Api
module V1
class RoomsController < Api::BaseController
2016-02-27 17:03:43 +05:30
load_resource :conference, find_by: :short_title
2014-08-07 07:42:22 +03:00
respond_to :json
2013-07-08 10:07:12 +02:00
2014-08-07 07:42:22 +03:00
def index
if params[:conference_id].blank?
rooms = Room.all
else
conference = Conference.find_by_guid(params[:conference_id])
2016-02-27 17:03:43 +05:30
rooms = conference.venue.rooms if conference.venue
2014-08-07 07:42:22 +03:00
end
respond_with rooms
end
2013-07-08 10:07:12 +02:00
end
end
end