5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 20:46:21 +00:00

fix: comentario en perfil de actore

This commit is contained in:
f 2024-03-06 17:22:01 -03:00
parent 2e04bc8eac
commit 00f865f315
No known key found for this signature in database
2 changed files with 9 additions and 3 deletions

View file

@ -14,9 +14,15 @@ class ActivityPub
# @see {https://docs.joinmastodon.org/spec/security/#ld}
def update_activity_pub_state!
ActivityPub.transaction do
ActivityPub::Object.find_by(uri: ActivityPub.uri_from_object(content['object']))&.activity_pubs&.find_each(&:remove!)
object = ActivityPub::Object.find_by(uri: ActivityPub.uri_from_object(content['object']))
activity_pub.remove!
if object
object.activity_pubs.find_each do |activity_pub|
activity_pub.remove! if activity_pub.may_remove?
end
end
activity_pub.remove! if activity_pub.may_remove?
end
end
end

View file

@ -14,4 +14,4 @@
- moderation_queue.each do |activity_pub|
-# cache [activity_pub, activity_pub.object, activity_pub.actor] do
%hr
= render 'comment', comment: activity_pub.object.content, profile: activity_pub.actor.content, activity_pub: activity_pub, form_id: form_id
= render 'moderation_queue/comment', comment: activity_pub.object.content, profile: activity_pub.actor.content, activity_pub: activity_pub, form_id: form_id