diff --git a/Program/V1/Controllers/PushController.cs b/Program/V1/Controllers/PushController.cs
index 9f7b45c..78f3562 100644
--- a/Program/V1/Controllers/PushController.cs
+++ b/Program/V1/Controllers/PushController.cs
@@ -1,13 +1,15 @@
-using AcaMate.Common.Models;
-using AcaMate.V1.Models;
-using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Update.Internal;
+using Microsoft.AspNetCore.Http.HttpResults;
+
using AcaMate.Common.Data;
using AcaMate.V1.Services;
-using Microsoft.AspNetCore.Http.HttpResults;
+using AcaMate.Common.Models;
+using AcaMate.V1.Models;
+
namespace AcaMate.V1.Controllers;
@@ -79,6 +81,9 @@ public class PushController : ControllerBase
}
+
+
+
///
/// Sends a push notification to the specified device token with the provided payload.
///
@@ -89,16 +94,18 @@ public class PushController : ControllerBase
/// Internal server error occurred.
/// Service unavailable.
[HttpPost("send")]
- [CustomOperation("푸시전송", "저장된 양식으로, 사용자에게 푸시를 전송한다.", "푸시")]
+ [CustomOperation("푸시 발송", "저장된 양식으로, 사용자에게 푸시를 송신한다.", "푸시")]
[ProducesResponseType(StatusCodes.Status200OK, Type = typeof(APIResponseStatus