minus-squareasudox@lemmy.asudox.devtoPrivacy@lemmy.dbzer0.com•John Oliver launches "Make yourself less valuable to Meta" website, suggests Signal, Mastodon, Pixelfed, and BlueSky as Meta alternativeslinkfedilinkarrow-up4·16 hours agoThe permadelete_for_creator function (called by the purge_user_account function, which is called by the delete_user_account handler when delete content is true) updates every comment of the user to contain the predefined text “Permanently Deleted”. delete_user_account: https://github.com/LemmyNet/lemmy/blob/493734d1b3b60587208d56049e9c14b815c5d8d1/crates/api_crud/src/user/delete.rs#L35 purge_user_account: https://github.com/LemmyNet/lemmy/blob/493734d1b3b60587208d56049e9c14b815c5d8d1/crates/api_common/src/utils.rs#L963 permadelete_for_creator: https://github.com/LemmyNet/lemmy/blob/493734d1b3b60587208d56049e9c14b815c5d8d1/crates/db_schema/src/impls/comment.rs#L34 linkfedilink
asudox@lemmy.asudox.dev to 196@lemmy.blahaj.zoneEnglish · 17 days agoI'd just like to interject for a moment.files.catbox.moeimagemessage-square0fedilinkarrow-up12arrow-down10
arrow-up12arrow-down1imageI'd just like to interject for a moment.files.catbox.moeasudox@lemmy.asudox.dev to 196@lemmy.blahaj.zoneEnglish · 17 days agomessage-square0fedilink
The
permadelete_for_creator
function (called by thepurge_user_account
function, which is called by thedelete_user_account
handler when delete content is true) updates every comment of the user to contain the predefined text “Permanently Deleted”.delete_user_account
: https://github.com/LemmyNet/lemmy/blob/493734d1b3b60587208d56049e9c14b815c5d8d1/crates/api_crud/src/user/delete.rs#L35purge_user_account
: https://github.com/LemmyNet/lemmy/blob/493734d1b3b60587208d56049e9c14b815c5d8d1/crates/api_common/src/utils.rs#L963permadelete_for_creator
: https://github.com/LemmyNet/lemmy/blob/493734d1b3b60587208d56049e9c14b815c5d8d1/crates/db_schema/src/impls/comment.rs#L34