xiaoyong931011
2021-01-28 968f77fbe04b387274522ad5e682bacdbbcbe9bc
src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
@@ -48,8 +48,14 @@
                .antMatchers("/api/exchange/**").permitAll()
                .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("/api/orderCoin/findCollect").permitAll()
                .antMatchers("/api/documentary/getFollowTraderProfitInfo").permitAll()
                .antMatchers("/api/helpCenter/**").permitAll()
                .anyRequest().authenticated()
                .and().apply(securityConfiguereAdapter());
    }