Skip to content

Commit

Permalink
path 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chs98412 committed Dec 14, 2024
1 parent 145b6a7 commit e63979d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class NotificationRouter(private val notificationHandler: NotificationHandler) {
(accept(MediaType.APPLICATION_JSON) and "/notification").nest {
PATCH("/fcm-key", notificationHandler::refreshFcmKey)
POST("/test", notificationHandler::testNotification)
DELETE("{notificationId}", notificationHandler::readNotification)
DELETE("/{notificationId}", notificationHandler::readNotification)
GET("", notificationHandler::getNotifications)
}
}
Expand Down

0 comments on commit e63979d

Please sign in to comment.