Sfoglia il codice sorgente

取消callback 权限认证

785834757 2 mesi fa
parent
commit
f7b1dcca54

+ 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();
             })