We need to get the time when users last logged in. Is that possible in Litium 6?
Litium version: 6
We need to get the time when users last logged in. Is that possible in Litium 6?
Litium version: 6
_securityToken.User.LastLoginDate; seems to be obsolete in V6, let me check how to get that.
Ok that table is not used anymore so one way could be to create a new Field in Person object and store that information on it on login and then You can fetch that like this, example: var lastLogin = person.Fields.GetValue(“LastLogin”);
Ok, thank!
I guess we implement it as a field as you suggested.