Esempio n. 1
0
        public async Task <ClaimsIdentity> GenerateUserIdentityAsync(OmsUserManager manager)
        {
            // Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
            var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);

            // Add custom user claims here
            return(userIdentity);
        }
Esempio n. 2
0
 public SignInManager(OmsUserManager userManager, IAuthenticationManager authenticationManager) : base(userManager, authenticationManager)
 {
 }