Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
"/webjars/**"
).permitAll()
.requestMatchers("/api/auth/**", "/api/schools/**", "/api/device/**", "/api/ai/**", "/api/usage/**", "/api/message/**", "/api/users/language").permitAll()
.requestMatchers("/api/admin/**").permitAll() // Todo 관리자만 허용해야 함, 테스트 위해 모두 허용
.requestMatchers("/api/admin/**").denyAll() // Todo 관리자만 허용 필요
.requestMatchers("/api/ws/**", "/ws/**").permitAll()
.requestMatchers("/login/oauth2/**", "/oauth2/**").permitAll()
.requestMatchers("/public/**").permitAll()
Expand Down
Loading