Class: Stay::RoomsController
- Inherits:
-
BaseApiController
- Object
- ActionController::Base
- BaseApiController
- Stay::RoomsController
- Defined in:
- app/controllers/stay/rooms_controller.rb
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
5 6 7 8 |
# File 'app/controllers/stay/rooms_controller.rb', line 5 def index @rooms = @property.rooms render json: { rooms: @rooms } end |
#show ⇒ Object
10 11 12 |
# File 'app/controllers/stay/rooms_controller.rb', line 10 def show render json: { room: @room } end |