コード例 #1
0
ファイル: UserController.cs プロジェクト: Boorys/SportAppCore
        public IActionResult ConfirmEmail(string token)
        {
            bool emailConfirmation = _emailService.CheckEmailToken(token);

            if (emailConfirmation)
            {
                JwtSecurityToken tokenJwt = _emailService.DecodeJwtToken(token);
                string           email    = tokenJwt.Payload.FirstOrDefault(x => x.Key == "email").Value.ToString();
                _userService.ActivateUser(email);
            }
            return(null);
        }