class School::Facility::RoomsController < ApplicationController
  def index
    render_success :ok, json: rooms.map { |r| props(r) }
  end

  private
    def rooms
      current_school.facility_rooms
    end

    def props(room)
      {
        id: room.id,
        name: room.name
      }
    end
end
