This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-05-02 13:10:57 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class LocalNotificationWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2018-11-08 12:05:42 -08:00
|
|
|
def perform(receiver_account_id, activity_id = nil, activity_class_name = nil)
|
|
|
|
if activity_id.nil? && activity_class_name.nil?
|
|
|
|
activity = Mention.find(receiver_account_id)
|
|
|
|
receiver = activity.account
|
|
|
|
else
|
|
|
|
receiver = Account.find(receiver_account_id)
|
|
|
|
activity = activity_class_name.constantize.find(activity_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
NotifyService.new.call(receiver, activity)
|
2018-05-02 13:10:57 -07:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|