Matej Mijoski
Matej Mijoski
This is possible with the `swagger_auto_schema` method decorator and it's `request_body` parameter.
Did you solve this problem? I'm also trying to add multiple objects to a M2M field, but it seems that calling save() on a partial update tries to first create...
@oguzhancelikarslan Did you solve this? Not sure why there's not an option to update the M2M field if it already exists.
I also encountered this error and it seems it's because in the registration serializer, the `validate_email` function checks whether the email exists AND is verified, however it doesn't handle the...
@yoccodog Could you help me out. I used your code snippet and adapted it to my app. ``` class UserTags(TagBase): class Meta: verbose_name = "Tag" verbose_name_plural = "Tags" # ......
@yoccodog I removed taggit but I think that it still doesn't work. I'm still getting a no such table: FileUpload_admintagsall error.
I've encountered another problem after solving the previous one (I didn't add the models to admin.py). The new problem is that if I go the Generic Tagged Item Base models...
I've got 4 tables: AdminTagsAll, UserTagsAll and 2 tables named Tags. I can access these 2 tables but when I go to AdminTagsAll or UserTagsAll I get the error.
It looks like the tables weren't being created. I installed django-extensions and ran restart_db and then migrate. It now works. Thank you very much. One more question, why do I...
@yoccodog Is there a way to have one of the tag fields (User Tags) in my model be a multiple select? I'm using select2 for the user interface and am...