From 2668b90f51445535100de64bcbcc18627b862535 Mon Sep 17 00:00:00 2001 From: ddingmin Date: Sun, 16 Jun 2024 12:42:57 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Authentication=20=EB=9D=BC=EC=9D=B4?= =?UTF-8?q?=EB=B8=8C=EB=9F=AC=EB=A6=AC=20=EC=88=98=EC=A0=95=20(#104)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../presentation/restapi/controller/NotificationController.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/depromeet/makers/presentation/restapi/controller/NotificationController.kt b/src/main/kotlin/com/depromeet/makers/presentation/restapi/controller/NotificationController.kt index 522382c..90e1a1a 100644 --- a/src/main/kotlin/com/depromeet/makers/presentation/restapi/controller/NotificationController.kt +++ b/src/main/kotlin/com/depromeet/makers/presentation/restapi/controller/NotificationController.kt @@ -4,7 +4,7 @@ import com.depromeet.makers.domain.usecase.GetRecentNotification import com.depromeet.makers.presentation.restapi.dto.response.NotificationResponse import io.swagger.v3.oas.annotations.Operation import io.swagger.v3.oas.annotations.tags.Tag -import org.apache.tomcat.util.net.openssl.ciphers.Authentication +import org.springframework.security.core.Authentication import org.springframework.web.bind.annotation.GetMapping import org.springframework.web.bind.annotation.RequestMapping import org.springframework.web.bind.annotation.RestController