Administrator
13 hours ago 9ff37e00205c776f62a9b07e1f9d8736a14d4d8c
src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
@@ -50,8 +50,11 @@
                .antMatchers("/api/member/memberForgetPwd").permitAll()
                .antMatchers("/api/member/memberCoinInfoList").permitAll()
                .antMatchers("/api/member/getPcVersionInfo").permitAll()
                .antMatchers("/api/member/getAppVersionInfo").permitAll()
                .antMatchers("/api/orderCoin/searchSymbolResultList").permitAll()
                .antMatchers("/api/orderCoin/findCollect").permitAll()
                .antMatchers("/api/gate/**").permitAll()
                .antMatchers("/gate-config.html").permitAll()
                .anyRequest().authenticated()
                .and().apply(securityConfiguereAdapter());
    }