10 lines
295 B
Ruby
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
|