Class: SourceMonitor::FaviconFetchJob

Inherits:
ApplicationJob show all
Defined in:
app/jobs/source_monitor/favicon_fetch_job.rb

Instance Method Summary collapse

Methods inherited from ApplicationJob

source_monitor_queue

Instance Method Details

#perform(source_id) ⇒ Object



9
10
11
12
13
14
# File 'app/jobs/source_monitor/favicon_fetch_job.rb', line 9

def perform(source_id)
  source = SourceMonitor::Source.find_by(id: source_id)
  return unless source

  SourceMonitor::Favicons::Fetcher.new(source).call
end