This commit is contained in:
2025-03-09 19:54:41 +05:00
parent 2b161f2206
commit ea5c779fe6

View File

@ -51,7 +51,7 @@ public class SecurityConfig {
protected boolean shouldNotFilter(HttpServletRequest request) throws ServletException { protected boolean shouldNotFilter(HttpServletRequest request) throws ServletException {
String path = request.getRequestURI(); String path = request.getRequestURI();
System.out.println(path); // https://127.0.0.1:8082/logout System.out.println(path); // https://127.0.0.1:8082/logout
return path.equals("/") || path.equals("/login") || path.equals("/logout") || path.equals("/create") || path.equals("/captcha") || path.equals("/restore"); return path.equals("/") || path.equals("/login") || path.equals("/logout") || path.equals("/create") || path.equals("/captcha") || path.equals("/restore") || path.equals("/reset");
} }
@Override @Override