Hello, I've noticed using eve 0.8 that with soft delete enabled, when a document is deleted, its auth_field is removed.
Is this intentional?
I see here [1], inside deleteitem function, the document is retrieved from database with `force_auth_field_projection` with default value False, and then here [2] this document without `user_id` replaces the original.
That's undesired in my case because I need to still keep the deleted documents belonging to the user that owns it. So later when getting the deleted documents I can show to user the ones he deleted, and losing the auth_field this is not possible.
Gabriel Wainer.