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 0095338 commit ba25c60Copy full SHA for ba25c60
src/main/java/com/amatta/findog/security/config/SecurityConfig.java
@@ -46,7 +46,7 @@ public SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Excepti
46
"/api/shelter/reload"
47
).permitAll()
48
// USER권한이 있어야 요청할 수 있도록 제한함
49
-// .requestMatchers("/test").hasRole("ROLE_MEMBER")
+ .requestMatchers("/test").hasRole("ROLE_MEMBER")
50
// 이밖의 모든 요청에 대해 인증을 필요로함
51
.anyRequest().authenticated())
52
// JWT 인증을 위해 직접 구현한 필터를 UsernamePasswordAuthenticationFilter 전에 실행
0 commit comments