Skip to content

Commit

Permalink
chore: notifications filter 예외 추가 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddingmin authored Jun 16, 2024
1 parent 2668b90 commit b26a528
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit b26a528

Please sign in to comment.