I would like to know how I can get users login Access information and their login frequency from Hybris db. Is it possible to know the table/s where this kind of data is stored?
Thanks in advance, AC
I would like to know how I can get users login Access information and their login frequency from Hybris db. Is it possible to know the table/s where this kind of data is stored?
Thanks in advance, AC
The only available information would be the last login date, if you want to keep more information about the login frequency, you will need to :
Adding to @Benoit answer, you can write your custom logic in StorefrontAuthenticationSuccessHandler
& LoginAuthenticationFailureHandler
(based on success or failure) to save newly added attributes in User/Employee model.