Sha256: 1b4d02d8e26ff341584b831a692328e4803fa2fe4e727f20c629d8b830e8e6fd
Contents?: true
Size: 282 Bytes
Versions: 15
Compression:
Stored size: 282 Bytes
Contents
# frozen_string_literal: true module Thredded class AutoFollowAndNotifyJob < ::ActiveJob::Base queue_as :default def perform(post_id) post = Post.find(post_id) AutofollowMentionedUsers.new(post).run NotifyFollowingUsers.new(post).run end end end
Version data entries
15 entries across 15 versions & 1 rubygems