I'm using django-attachments to upload files in django-admin. ```python class MyEntryOptions(admin.ModelAdmin): inlines = (AttachmentInlines,) ```  Instead of manually specifying the creator I would like to automatically set it to request.user. How can I do that?
I'm using django-attachments to upload files in django-admin.
Instead of manually specifying the creator I would like to automatically set it to request.user. How can I do that?