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 f3c92be commit e2c8512Copy full SHA for e2c8512
src/main/java/cloudcomputinginha/demo/config/auth/SecurityConfig.java
@@ -73,8 +73,11 @@ public CorsConfiguration getCorsConfiguration(HttpServletRequest request) {
73
74
//경로별 인가 작업
75
.authorizeHttpRequests((auth) -> auth
76
- .requestMatchers("/auth/GOOGLE", "/auth/google/callback").permitAll()
77
- .requestMatchers("/v3/api-docs/**",
+ .requestMatchers(
+ "/auth/GOOGLE",
78
+ "/auth/google/callback",
79
+ "/auth/reissue",
80
+ "/v3/api-docs/**",
81
"/swagger-ui/**",
82
"/swagger-resources/**",
83
"/notifications/feedback"
0 commit comments