diff --git a/src/main/kotlin/com/depromeet/makers/presentation/restapi/config/WebSecurityConfig.kt b/src/main/kotlin/com/depromeet/makers/presentation/restapi/config/WebSecurityConfig.kt index 62cb9ae..dd58903 100644 --- a/src/main/kotlin/com/depromeet/makers/presentation/restapi/config/WebSecurityConfig.kt +++ b/src/main/kotlin/com/depromeet/makers/presentation/restapi/config/WebSecurityConfig.kt @@ -25,7 +25,7 @@ class WebSecurityConfig { jwtTokenProvider: JWTTokenProvider, handlerExceptionResolver: HandlerExceptionResolver, ): SecurityFilterChain = httpSecurity - .securityMatcher("/v1/me/**", "/v1/sessions/**", "/v1/members/**", "/v1/attendances/**", "/v1/check-in") + .securityMatcher("/v1/me/**", "/v1/sessions/**", "/v1/members/**", "/v1/attendances/**", "/v1/check-in", "/v1/notifications/**") .csrf { it.disable() } .cors(Customizer.withDefaults()) .sessionManagement { 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 90e1a1a..4ed4a4b 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 @@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.GetMapping import org.springframework.web.bind.annotation.RequestMapping import org.springframework.web.bind.annotation.RestController -@Tag(name = "알림", description = "알림 관련 API") +@Tag(name = "알림 API", description = "알림 관련 API") @RestController @RequestMapping("/v1/notifications") class NotificationController(