Dash Winterson
Dash Winterson
@JBKahn i think that's a common issue with a lot of custom/off script migrations, it seems like something they may want to try to fix at the django/migration level as...
@zetahernandez maybe re-run ci?
One super simple way is to create an auth wrapper and wrap the methods that require it ```python from django.http import HttpRequest from django.contrib.auth.middleware import AuthenticationMiddleware class requires_authentication(object): def __call__(self,...
Try something like: ``` from json import JSONEncoder from uuid import UUID old_default = JSONEncoder.default def new_default(obj): if isinstance(obj, UUID): return str(obj) return old_default(self, obj) JSONEncoder.default = new_default ```
how far did you get? you'll have to trudge through the django docs yourself but with DRF you can make a relatively simple GET/POST/DELETE viewset along these lines in your...
What version of python are you on? It seems [here](https://github.com/jazzband/django-push-notifications/blob/master/setup.cfg#L33) that >3.5 you should be good.
@rocchidavide I just ran into this today, I'll eat my words! Is there a reason apns2 is stuck at hyperframe 3.2.0? That release is about 4 years old looking at...
yes, should we mark the old/this one as duplicate?
Just as an aside, in using the `extend_schema_serializer` decorator, it does not seems like the examples on the right hand side are affected, for instance ```@extend_schema_serializer( examples=[ OpenApiExample( "Serializer C...