Skip to content

Commit ab868c8

Browse files
feat: add html page
this is the first version of the frontend
1 parent c3f7843 commit ab868c8

2 files changed

Lines changed: 536 additions & 0 deletions

File tree

src/main/java/com/vianavitor/simplelibrarygame/config/SecurityConfig.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3232
})
3333
.authorizeHttpRequests(authorization -> authorization
3434
.requestMatchers("/api/test/**").permitAll()
35+
.requestMatchers("/dashboard.html").permitAll()
36+
.requestMatchers("/static/**").permitAll()
3537
.requestMatchers(HttpMethod.POST, "/auth/login").permitAll()
3638
// ENDPOINTS PERMISSIONS:
3739
// * Students permissions

0 commit comments

Comments
 (0)