Browse Source

禁止登录

wangqifan 4 năm trước cách đây
mục cha
commit
fa7d0e2649

+ 1 - 0
src/main/java/com/izouma/tcg/security/WebSecurityConfig.java

@@ -80,6 +80,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
                 .antMatchers("/MP_verify*").permitAll()
                 .antMatchers("/series/all").permitAll()
                 .antMatchers("/cardCase/showInfoMA").permitAll()
+                .antMatchers("/user/checkZmj").permitAll()
                 .antMatchers("/store/**").permitAll()
                 // all other requests need to be authenticated
                 .anyRequest().authenticated().and()