I have a django app and I want to add authentication to it. Django is very good friend so it has a great security part.
I can use the User object and the built-in admin GUI to maintain users, groups, etc.
I want to give the opportunity to the app user to connect to LDAP and use it to authenticate the user against. Ok, there are django-ldap modules that I can use, brilliant!
However I don't understand at the moment how it works exactly. Will the user be propagated to the local django suth database (the reason why I ask that is that we still deal with the User object when call LDAP)? Or whenever we need the user or auth has to be done the LDAP will be called and authenticate the user there?
Sorry for the novice question but I am a little bit confused.
Thanks,
V.