浏览代码

物流回调接口权限放开

xgb 1 月之前
父节点
当前提交
615b686433
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      fs-framework/src/main/java/com/fs/framework/config/SecurityConfig.java

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

@@ -144,6 +144,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
                 .antMatchers("/druid/**").anonymous()
                 .antMatchers("/course/userVideo/videoTranscode").anonymous()
                 .antMatchers("/erp/call/**").anonymous()
+                .antMatchers("/store/express/expressNotify").anonymous()
                 // 除上面外的所有请求全部需要鉴权认证
                 .anyRequest().authenticated()
                 .and()