1 parent c3f7843 commit ab868c8Copy full SHA for ab868c8
2 files changed
src/main/java/com/vianavitor/simplelibrarygame/config/SecurityConfig.java
@@ -32,6 +32,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
32
})
33
.authorizeHttpRequests(authorization -> authorization
34
.requestMatchers("/api/test/**").permitAll()
35
+ .requestMatchers("/dashboard.html").permitAll()
36
+ .requestMatchers("/static/**").permitAll()
37
.requestMatchers(HttpMethod.POST, "/auth/login").permitAll()
38
// ENDPOINTS PERMISSIONS:
39
// * Students permissions
0 commit comments