Brian Doyle

Results 3 comments of Brian Doyle

I've run into this one several times. The docs say that it's related to email whitelisting, but I got it in other circumstances as well. The things that fixed it...

If anyone finds this looking for the problem I had, the answer is to set the permissions individually in your viewsets. IE class IslandViewset(viewsets.ModelViewSet): serializer_class = IslandSerializer queryset = Island.objects.none()...

If you had it working previously, then number 1 probably doesn't apply to you. I was initially sending the wrong token/info in the post. I switched it to simply passing...