-
To design backend of the website in django.
-
### Issue
I upgraded from postgres 11 to postgres 16 successfully, tested using a blank db before clearing the db, letting postgres 16 set it up empty, and then loading in the old postgres 11 dump, a…
-
Hi,
I was planning on using the (Django REST Framework) Response validation in some unit tests. These unit tests are performing different actions on the REST API and validate the result. I would li…
-
#132 와 관련된 질문이긴 합니다만, `user = request.user` 를 이용해서 로그인한 user의 정보를 가져오고 싶은데,`AttributeError: 'UserViewSet' object has no attribute 'user'` 이런 에러가 발생했습니다.
근데 https://www.django-rest-framework.org/ap…
guzus updated
4 years ago
-
According to this [developer document](https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/APNSOverview.html#//apple_ref/doc/uid/TP40008194-CH…
-
Summary of my thoughts on how we can get this going can be found here:
https://docs.google.com/document/d/14R72-ev7Toh6iCN2de0FCOm5OrOWY33w5qV8LGLUgZM/edit?usp=sharing
> Locate Database Code - h…
-
```
class SomeViewSet(mixins.ListModelMixin, GenericViewSet):
queryset = SomeModel.objects.all()
filter_backends = (filters.OrderingFilter,)
ordering_fields = ("field1", "field2")
…
-
```
Traceback:
File "/home/user/whgazetteer-mehdie/venv/lib/python3.10/site-packages/django/core/handlers/exception.py" in inner
34. response = get_response(request)
File "/home/…
-
I'm working on a Django DRF project, and while implementing the rules, I feel like inheriting from `RulesModelBase` creates a really heavy dependency on this library.
I'm trying to make it so that…
-
This is a limitation in the JSON parser used by Django REST Framework. I think DRF's JSON parser is pluggable, so we may be able to swap it for something more forgiving.