10 lines
140 B
Ruby
10 lines
140 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IqdbRemoveJob < ApplicationJob
|
|
queue_as :iqdb
|
|
|
|
def perform(id)
|
|
Iqdb.remove_image(id)
|
|
end
|
|
end
|