Add ActivityPub attributes to accounts (#4273)
This commit is contained in:
@ -10,7 +10,7 @@ class SendInteractionService < BaseService
|
||||
@source_account = source_account
|
||||
@target_account = target_account
|
||||
|
||||
return if block_notification?
|
||||
return if !target_account.ostatus? || block_notification?
|
||||
|
||||
delivery = build_request.perform
|
||||
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
class SubscribeService < BaseService
|
||||
def call(account)
|
||||
return unless account.ostatus?
|
||||
|
||||
@account = account
|
||||
@account.secret = SecureRandom.hex
|
||||
@response = build_request.perform
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
class UnsubscribeService < BaseService
|
||||
def call(account)
|
||||
return unless account.ostatus?
|
||||
|
||||
@account = account
|
||||
@response = build_request.perform
|
||||
|
||||
|
Reference in New Issue
Block a user