Closed mbhassan closed 4 years ago
Hey @mbhassan , thanks for the heads-up!
You are right, from the Django docs:
Changed in Django 1.10: In older versions, this was a method. Backwards-compatibility support for using it as a method will be removed in Django 2.0.
Would you be willing to open a PR with a fix?
sure. ill open a pr after fixing the bug.
Closed in #668.
Issue in autocomplete endpoints when using django admin.
self.request.user.is_authenticated() is not a function but instead an attribute.
Resolution: Should be changed to self.request.user.is_authenticated