Skip to content

Commit 44e892c

Browse files
committed
♻️ chore: 스웨거 수정
1 parent 224aee5 commit 44e892c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/main/java/com/api/advanced_mobile/global/security/SecurityConfig.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
2121
.cors(cors -> {})
2222
.authorizeHttpRequests(auth -> auth
2323
.requestMatchers(
24-
"/signup",
25-
"/login",
26-
27-
"/v3/api-docs/**",
28-
"/swagger-ui/**",
29-
"/swagger-ui.html"
24+
"/api/signup",
25+
"/api/login",
26+
"/api/v3/api-docs/**",
27+
"/api/swagger-ui/**",
28+
"/api/swagger-ui.html"
3029
).permitAll()
3130
.anyRequest().authenticated()
3231
)

0 commit comments

Comments
 (0)