瀏覽代碼

优化优惠卷领取,优化充值记录

goods20 5 月之前
父節點
當前提交
813c5df1bf
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java

+ 1 - 1
ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java

@@ -112,7 +112,7 @@ public class SecurityConfig {
                             // 静态资源,可匿名访问
                             .requestMatchers(HttpMethod.GET, "/", "/*.html", "/**.html", "/**.css", "/**.js", "/profile/**").permitAll()
                             .requestMatchers("/swagger-ui.html", "/v3/api-docs/**", "/swagger-ui/**", "/druid/**").permitAll()
-                            .requestMatchers("/wx/**").anonymous()
+//                            .requestMatchers("/wx/**").anonymous()
                             // 除上面外的所有请求全部需要鉴权认证
                             .anyRequest().authenticated();
                 })