forum: automatically post new forum posts to Discord.

This commit is contained in:
evazion
2021-02-18 07:08:45 -06:00
parent 93f6e935a8
commit b63d8207a9
6 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
class DiscordNotificationJob < ApplicationJob
retry_on Exception, attempts: 0
def perform(forum_post:)
forum_post.send_discord_notification
end
end