@@ -49,6 +49,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
.authorizeRequests()
.antMatchers("/**/*swagger*/**").permitAll()
.antMatchers("/**/*api-docs*/**").permitAll()
+ .antMatchers("/**/hook").permitAll()
.and()
//跨域的Options请求进行放行