Add developer profile api

This commit is contained in:
2024-02-23 11:01:03 +08:00
parent d38f9f4a58
commit 3c82107394
11 changed files with 149 additions and 7 deletions

View File

@@ -80,7 +80,7 @@ class SecurityConfig(
"/forget",
"/retrieve"
).anonymous()
.requestMatchers("/tool/detail/**", "/tool/store").permitAll()
.requestMatchers("/tool/detail/**", "/tool/store", "/tool/store/*", "/system/user/info/*").permitAll()
// Authentication required
.anyRequest().authenticated()
}