class Internal::Paya::LocationsController < Internal::Paya::Controller
  def show
    render_success :ok, json: location_service
  end

  private
    def location_service
      Paya::LocationService.call(current_school, :show)['locations'].first
    end
end
