diegueus9
diegueus9

Reputation: 31522

Django Authentication Backend

How i know in server-side what authentication backend is for determinated user?

Upvotes: 2

Views: 819

Answers (1)

Arthur Debert
Arthur Debert

Reputation: 10687

After authenticating, each User object will have a 'backend' property, pointing to the module and class that authenticated him. You can see related code here.

Upvotes: 3

Related Questions