Files
danbooru/app/jobs/discord_notification_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

10 lines
295 B
Ruby

# A job that sends notifications about new forum posts to Discord. Spawned by
# the {ForumPost} class when a new forum post is created.
class DiscordNotificationJob < ApplicationJob
retry_on Exception, attempts: 0
def perform(forum_post:)
forum_post.send_discord_notification
end
end