I have recently implemented the asp identity system in to my website.
Now for the fact that I dont want my users to use accounts between themselves I want to log out people with the same username. I noticed that I have a AspNetUserLogins and theoretically I could just delete doubled items from there but its always empty.
Did I implement it badly? Is it supposed to be empty?Everything seems to work without a problem otherwise.
If it is supposed to be empty do I have to fill it manually?
Is AspNetUserClaims also supposed to be empty until I make a custom claim for it?
Any other ideas on how to implement this automatic sign out system?
Edit: Did some simple research and realized aspnetuserslogins is just for external logins. But what does actually keeps the logs of who is logged in?