We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 224aee5 commit 44e892cCopy full SHA for 44e892c
src/main/java/com/api/advanced_mobile/global/security/SecurityConfig.java
@@ -21,12 +21,11 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
21
.cors(cors -> {})
22
.authorizeHttpRequests(auth -> auth
23
.requestMatchers(
24
- "/signup",
25
- "/login",
26
-
27
- "/v3/api-docs/**",
28
- "/swagger-ui/**",
29
- "/swagger-ui.html"
+ "/api/signup",
+ "/api/login",
+ "/api/v3/api-docs/**",
+ "/api/swagger-ui/**",
+ "/api/swagger-ui.html"
30
).permitAll()
31
.anyRequest().authenticated()
32
)
0 commit comments