mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-26 14:06:21 +00:00
17 lines
378 B
Ruby
17 lines
378 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ActivityPub
|
||
|
class InboxJob < ApplicationJob
|
||
|
self.priority = 10
|
||
|
|
||
|
# @param :site [Site]
|
||
|
# @param :activity [String]
|
||
|
# @param :action [Symbol]
|
||
|
def perform(site:, activity:, action:)
|
||
|
response = site.social_inbox.inbox.public_send(action, id: activity)
|
||
|
|
||
|
raise response.body unless response.ok?
|
||
|
end
|
||
|
end
|
||
|
end
|