Helius
2020-11-11 d2adc89b5970c2d855d4901722e18d98fc3b9480
src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
@@ -45,6 +45,7 @@
                .antMatchers("/v2/**").permitAll()
                .antMatchers("/api/symbols/**").permitAll()
                .antMatchers("/common/**").permitAll()
                .antMatchers("/trc/**").permitAll()
                .antMatchers("/api/exchange/**").permitAll()
                .antMatchers("/api/member/getMemberAccountInfo").permitAll()
                .antMatchers("/api/member/memberForgetPwd").permitAll()
@@ -53,6 +54,9 @@
                .antMatchers("/api/member/getAppVersionInfo").permitAll()
                .antMatchers("/api/orderCoin/searchSymbolResultList").permitAll()
                .antMatchers("/api/orderCoin/findCollect").permitAll()
                .antMatchers("/api/orderCoin/deal/list").permitAll()
                .antMatchers("/api/helpCenter/**").permitAll()
                .antMatchers("/trade/**").permitAll()
                .anyRequest().authenticated()
                .and().apply(securityConfiguereAdapter());
    }