Files
danbooru/app/jobs/iqdb_add_post_job.rb
evazion ad4c75eb1a docs add more docs to app/{jobs,logical}.
These were missed in the last commit.
2021-06-28 05:09:19 -05:00

8 lines
226 B
Ruby

# A job that adds a post to IQDB when a new post is uploaded, or when a post is
# regenerated. Spawned by the {Post} class.
class IqdbAddPostJob < ApplicationJob
def perform(post)
IqdbClient.new.add_post(post)
end
end