zainali5120
2020-10-08 c24fc100ef9966495dc706e110fc37f13e003448
src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
@@ -49,8 +49,11 @@
                .antMatchers("/api/member/getMemberAccountInfo").permitAll()
                .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("/trade/**").permitAll()
                .anyRequest().authenticated()
                .and().apply(securityConfiguereAdapter());
    }