jtrain

Results 18 comments of jtrain

BTW seems somewhat related to this closed branch: https://github.com/dbrgn/drf-dynamic-fields/pull/20

I don't think anyone would be relying on the current behaviour, considering it is very limited (fields are filtered for both to_internal and to_representation). And I (in my own code)...

@dwisulfahnur yes its true, we could do that. However its much simpler overall to ignore POST entirely and say we don't handle them. We've had one other pull request asking...

Hey thanks! I'll admit I'm having some trouble following your suggestion. Are you able to give a real life (or realistic) example so I can get it clear in my...

Hi Lakshan, Reading what you've written, It sounds like you might have support for dynamically regenerating the next static page? The way I use punch right now is to call...

I'd be curious to see what you mean by the optimised queries. We often do our optimisation at the queryset level rather than in the serializer. So if a client...

```python # NOTE: drf test framework builds a request object where the query # parameters are found under the GET attribute. params = getattr(request, "query_params", getattr(request, "GET", None)) if params...

There are multiple ways you could take this. One idea off the top of my head is a new mixin for the viewset that would define a `get_queryset` method that...