From ebea673301f5f1ae47e69abcdfaadb2d581cbbae Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 25 Nov 2020 16:34:56 +0800
Subject: [PATCH] 20201125

---
 src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java b/src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
index dce5e35..1c5e6a7 100644
--- a/src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
+++ b/src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
@@ -39,6 +39,8 @@
                 .authorizeRequests()
                 .antMatchers(HttpMethod.OPTIONS, "/**").permitAll()
                 .antMatchers("/login").permitAll()
+                .antMatchers("/registerOutCenter").permitAll()
+                .antMatchers("/loginOutCenter").permitAll()
                 .antMatchers("/register").permitAll()
                 .antMatchers("/swagger**/**").permitAll()
                 .antMatchers("/webjars/**").permitAll()
@@ -53,6 +55,8 @@
                 .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());

--
Gitblit v1.9.1