Helius
2021-05-25 2d398a2bbd4a210ffd885f0b0b0a0f99edd84707
src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
@@ -50,8 +50,18 @@
                .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/trader/beTraderStatusCondition").permitAll()
                .antMatchers("/api/activity/getActivityMain").permitAll()
                .antMatchers("/api/helpCenter/**").permitAll()
                .antMatchers("/api/yd/findAllInfo").permitAll()
                .antMatchers("/api/yd/getProductList").permitAll()
                .antMatchers("/api/yd/findProductInfo").permitAll()
                .antMatchers("/api/yd/getXchPrice").permitAll()
                .anyRequest().authenticated()
                .and().apply(securityConfiguereAdapter());
    }