diff --git a/Program/Common/JWTToken/JwtTokenService.cs b/Program/Common/JWTToken/JwtTokenService.cs
index 0121aab..0cfd7b5 100644
--- a/Program/Common/JWTToken/JwtTokenService.cs
+++ b/Program/Common/JWTToken/JwtTokenService.cs
@@ -76,6 +76,9 @@ public class JwtTokenService
}
+ ///
+ /// 여기는 엑세스 토큰의 확인을 위한 jwt 서비스 내의 인증 메서드
+ ///
public ClaimsPrincipal ValidateToken(string token)
{
if (string.IsNullOrWhiteSpace(token)) return null;
diff --git a/Program/V1/Controllers/PushController.cs b/Program/V1/Controllers/PushController.cs
index 81b7a45..a6c7afe 100644
--- a/Program/V1/Controllers/PushController.cs
+++ b/Program/V1/Controllers/PushController.cs
@@ -25,6 +25,7 @@ public class PushController : ControllerBase
public IActionResult GetPushData()
{
return Ok("SEND");
+
}
@@ -39,51 +40,67 @@ public class PushController : ControllerBase
/// Internal server error occurred.
/// Service unavailable.
[HttpPost("send")]
- [CustomOperation("푸시전송", "저장된 양식으로, 사용자에게 푸시를 전송한다.", "푸시")]
+ [CustomOperation("푸시전송", "저장된 양식으로, 사용자에게 푸시를 전송한다.(로컬 테스트 불가)", "푸시")]
[ProducesResponseType(StatusCodes.Status200OK, Type = typeof(APIResponseStatus