예제 #1
0
 [Authorize()] // appidentity
 public async Task <IActionResult> CreateAcknowledgeCodeAsync([FromBody] CreateUserAuthenticationCodeRequest request)
 {
     return(Ok(await userAuthService.CreateCodeAsync(User.Identity as ISessionIdentity, request)));
 }