Skip to content

Commit

Permalink
Optimize naming
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Jun 17, 2024
1 parent 69c1802 commit cf06059
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,9 @@ public async Task<ActionResult<AuthenticationResponseDto>> AuthenticateAsync(
}

/// <summary>
/// Second Step Time-based one-time password
/// Authenticate Mfa Token
/// </summary>
/// <remarks>Second Step Time-based one-time password</remarks>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
Expand All @@ -196,7 +197,7 @@ public async Task<ActionResult<AuthenticationResponseDto>> AuthenticateAsync(
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
public async Task<ActionResult<AuthenticationResponseDto>> SecondStepTotpAsync(
public async Task<ActionResult<AuthenticationResponseDto>> AuthenticateMfaTokenAsync(
[Required][FromBody] AuthenticationMfaTokenRequestDto request,
CancellationToken cancellationToken = default)
{
Expand Down

0 comments on commit cf06059

Please sign in to comment.