dawarich/app/jobs/reverse_geocoding_job.rb
2024-07-12 21:59:03 +02:00

11 lines
235 B
Ruby

# frozen_string_literal: true
class ReverseGeocodingJob < ApplicationJob
queue_as :reverse_geocoding
def perform(point_id)
return unless REVERSE_GEOCODING_ENABLED
ReverseGeocoding::FetchData.new(point_id).call
end
end