Skip to content

Commit

Permalink
update comments in HomeController.cs Fixes #196
Browse files Browse the repository at this point in the history
  • Loading branch information
ankit authored and ankit committed Feb 23, 2017
1 parent 1007f94 commit 8c2e3b5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -78,7 +78,7 @@ public async Task<ActionResult> AfterLogIn()
//for check login user is already added in slack
ViewBag.userEmail = await _oAuthLoginRepository.CheckUserSlackInformation(userId);

//this for get login user email address.
//this for get login user email address and encrypt hash code.
ApplicationUser user = await _userManager.FindByIdAsync(userId);
EmailHashCodeAC emailHaseCodeAC = new EmailHashCodeAC(_md5Service.GetMD5HashData(user.Email.ToLower()));
ViewBag.emailHashCode = emailHaseCodeAC;
Expand Down

0 comments on commit 8c2e3b5

Please sign in to comment.