5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-10-10 00:26:57 +00:00

fix: aprobar las peticiones de seguimiento automáticamente

This commit is contained in:
f 2024-03-16 16:36:00 -03:00
parent 8ff5626e99
commit f6b2895b58
No known key found for this signature in database

View file

@ -11,9 +11,7 @@ class ActivityPub
class Follow < ActivityPub::Activity
# Auto-aprobar la solicitud de seguimiento
def update_activity_pub_state!
activity_pub.approve!
rescue Exception => e
ExceptionNotifier.notify_exception(e, data: { site: activity_pub.site.name, activity: self.id })
activity_pub.approve! if activity_pub.may_approve?
end
end
end