Complete core functions #9

Merged
FatttSnake merged 171 commits from FatttSnake into dev 2024-02-23 11:56:35 +08:00
Showing only changes of commit 1fcd468581 - Show all commits

View File

@@ -58,14 +58,14 @@ class SecurityConfig(
authorizeHttpRequests
// Allow anonymous access
.requestMatchers(
"/login",
"/error/thrown",
"/doc.html",
"/swagger-ui/**",
"/webjars/**",
"/v3/**",
"/swagger-ui.html",
"/favicon.ico"
"/favicon.ico",
"/login",
).anonymous()
// Authentication required
.anyRequest().authenticated()