Closed krushiraj closed 3 years ago
As request.user.is_authenticated was no longer a method it was changed to use as boolean. But this has a side effect for Django < 1.10 where it is a method. Hence added 'is_user_authenticated' which works conditionally and fixes the side effect.
Are there any plans to merge this or is it a better option to close this?
As request.user.is_authenticated was no longer a method it was changed to use as boolean. But this has a side effect for Django < 1.10 where it is a method. Hence added 'is_user_authenticated' which works conditionally and fixes the side effect.