Helmut
Helmut
I have an idea - was poking around Django's docs, and suddenly realized that Django's @csrf_exempt decorator serves the same purpose as what we want to do here: prevent a...
No, not yet. :(
Thank you, @jasperlittle!
Technically, Django 1.8 still has extended support, but this is only until 1 April. And besides we have a much newer LTS in Django 1.11, so dropping 1.8 is a...
I think I may have found the info I need. Will try to submit a fix for this in the next day or two.
Further error received with Django 2.0: ``` File "/home/helmut/code/django-rest-framework-docs/demo/project/organisations/models.py", line 32, in Membership organisation = models.ForeignKey(Organisation) TypeError: __init__() missing 1 required positional argument: 'on_delete' ```
That seems to be on the demo project.
I have started on a fix, but ran into some difficulties that I have not been able to solve yet. Will hopefully get some more time to look at this...
The problem is that it'll need conditional checks, since the changes in 2.0 that are the issue here are not all present or back-ported in 1.11 and 1.8, which are...