I want to use LDAP AUTH for django. For the moment I have also a django Model Backend where are all my users and theirs groups.
In my code, an user passes a test in order to access to application. This operation check if the group to allow is in the user information.
But now I wanted to stop using Model Authentication and use only LDAP AUTH...
How can I manage to use the same function to allow access, with LDAP groups without creating an user in the Model?