Hello all,
Is it possible to find out when a user started to watch a users profil and also when he stopped watch that profile?
Audit Log dont have that information, maybe some systemlog or Database?
Thanks
Oli
Hi Oliver,
The audit log only contains Administrator actions, and following a user is not an admin action.
So, having a look at the database the table we're interested in is follow_connections, and we'd want something like these two SQL queries
select follower.username follower, followee.username followee from follow_connections inner join user_mapping follower on follow_connections.follower = follower.user_key inner join user_mapping followee on follow_connections.followee = followee.user_key ;
But there's no record of date. You could put in user access logging
And then look for
To catch the dates as well.
Regards, James
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.