Delete file upload user

I have a system where a user creates their account and, using a login and password, can include their products with texts and images through the file upload.

After a certain period of time, this user no longer wishes to participate in the service and removes his user account.

You can revoke the images that the user uploaded when the user removes their account. Automatically remove images when account is deleted.

Thanks.
Dirceu M. de Azevedo

1 Like

When a user deletes their account, trigger a backend workflow to handle the removal of their data.

  • This process should include identifying all images / other data objects linked to the user’s account (you need to properly set up the all the datatypes linked to the user you wish to be removed)
  • To actually delete the file from the server, you need to use the Delete an uploaded file action in a workflow. Keep in mind that you need the URL of the file to delete; as such you should delete the file before you clear the URL from the database.
    Here is the tutorial on how to delete an uploaded file - https://www.youtube.com/watch?v=-z6b2UH_JAw

Hope this helps.

This topic was automatically closed after 70 days. New replies are no longer allowed.