5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-17 06:36:22 +00:00

fix: las actividades de borrado eliminan el contenido también

This commit is contained in:
f 2024-02-21 17:09:15 -03:00
parent dca266714d
commit 2ae2b8e9e8
No known key found for this signature in database

View file

@ -4,9 +4,9 @@ class ActivityPub
class Activity class Activity
class Delete < ActivityPub::Activity class Delete < ActivityPub::Activity
# Si estamos eliminando el objeto, tenemos que vaciar su contenido y # Si estamos eliminando el objeto, tenemos que vaciar su contenido y
# cambiar el estado a borrado # cambiar el estado a borrado.
def update_activity_pub_state! def update_activity_pub_state!
activity_pub.deleted! activity_pub.remove!
end end
end end
end end