public IActionResult RefreshToken([FromBody] AccountRefreshTokenModel model)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(nameof(model)));
            }

            var response = _authenticationService.RefreshToken(model);

            return(Ok(response));
        }
Example #2
0
 public string RefreshToken(AccountRefreshTokenModel model)
 {
     throw new NotImplementedException();
 }