瀏覽代碼

取消callback 权限认证

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

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

@@ -121,6 +121,7 @@ public class SecurityConfig
                         .antMatchers("/draw/**").permitAll()
                         //广告抽取接口
                         .antMatchers("/advertising/**").permitAll()
+                        .antMatchers("/callback/**").permitAll()
                     // 除上面外的所有请求全部需要鉴权认证
                     .anyRequest().authenticated();
             })