Browse Source

Merge branch 'feature/19315_Customer-Registration' of http://202.166.220.79:3000/IME-LONDON/CustomerPortal into feature/19315_Customer-Registration

feature/19315_Customer-Registration
Leeza Baidar 11 months ago
parent
commit
6ddfe33876
  1. 1
      CustomerOnlineV2/CustomerOnlineV2.Common/Helper/LoginUserInfo.cs

1
CustomerOnlineV2/CustomerOnlineV2.Common/Helper/LoginUserInfo.cs

@ -23,6 +23,7 @@ namespace CustomerOnlineV2.Common.Helper
model.RememberMe = Convert.ToBoolean(claimIdentity.FindFirst(x => x.Type == "RememberMe").Value);
model.SessionId = claimIdentity.FindFirst(x => x.Type == "SessionId").Value;
model.UserId = claimIdentity.FindFirst(x => x.Type == "UserId").Value;
model.IsEmailVerified = Convert.ToBoolean(claimIdentity.FindFirst(x => x.Type == "IsEmailVerified").Value);
}
return model;
}

Loading…
Cancel
Save