Skip to content

Commit

Permalink
๐Ÿ”ง [Config] ๋งค๋„ˆ ๋ ˆ๋ฒจ ๋ฐ ํ‚ค์›Œ๋“œ ์ •๋ณด ์กฐํšŒ ์—”๋“œํฌ์ธํŠธ permit ์„ค์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
Eunjin3395 committed Jan 18, 2025
1 parent 0fbc3ee commit 04e2093
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ public SecurityFilterChain filterChain(HttpSecurity http, JwtAuthFilter jwtAuthF
.requestMatchers(
"/api/v2/email/send/**",
"/api/v2/email/verify").permitAll()
.requestMatchers(
"/api/v2/manner/keyword/*",
"/api/v2/manner/level/*").permitAll()
.requestMatchers(
"/swagger-ui/**",
"/v3/api-docs/**").permitAll()
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/excluded-paths.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ security:
pattern: /api/v2/posts/list # ๊ฒŒ์‹œ๊ธ€ ๋ชฉ๋ก ์กฐํšŒ
- method: GET
pattern: /api/v2/posts/list/* # ๋น„ํšŒ์›์šฉ ํŠน์ • ๊ฒŒ์‹œ๊ธ€ ์กฐํšŒ
- method: GET
pattern: /api/v2/manner/keyword/* # ๋งค๋„ˆ ํ‚ค์›Œ๋“œ ์ •๋ณด ์กฐํšŒ
- method: GET
pattern: /api/v2/manner/level/* # ๋งค๋„ˆ ๋ ˆ๋ฒจ ์ •๋ณด ์กฐํšŒ

0 comments on commit 04e2093

Please sign in to comment.