Is there a simple way to persist all Windows user names that access my service using AspNetWindowsAuthProvider?
Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[] { new AspNetWindowsAuthProvider(this) { PersistSession = true, AllowAllWindowsAuthUsers = true, LoadUserAuthFilter = LoadUserAuthInfo } } ));
I think in a previous version it would do this automatically, but my reading of the Authentication & Authorization docs indicates that the windowsauth no longer persists to the UserAuth table.
Ideally I would like to allow all Windows authenticated users to access my service and be automatically registered in the UserAuth table so that these can be used to assign roles and monitor who is accessing the service.