views:

31

answers:

1

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

+1  A: 

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.

Arthur Debert