This content has been marked as final.
Show 1 reply
-
1. Re: How to trace login/logout actions?
sebp Apr 24, 2014 3:40 AM (in response to kenlf)Well, you could have a User entity with the properties lastLogin and lastLogout. If the User entity is audited and these properties get updated each time the user logs in or logs out respectivly then you could use the audit table of the User entity for a trace of login and logout actions of this user. Does this help?