8 lines
159 B
Ruby
8 lines
159 B
Ruby
class DiscordNotificationJob < ApplicationJob
|
|
retry_on Exception, attempts: 0
|
|
|
|
def perform(forum_post:)
|
|
forum_post.send_discord_notification
|
|
end
|
|
end
|