From 3ac4cfff3d2751a8e644157cb6c1d40a0cecedb4 Mon Sep 17 00:00:00 2001 From: "DESKTOP-G8BCEP0\\HP" <2037158277@qq.com> Date: Thu, 9 Sep 2021 16:08:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E7=B1=BB=EF=BC=8C=E5=BC=80=E6=94=BE=E7=BB=91=E5=AE=9A=E7=BD=91?= =?UTF-8?q?=E7=AB=99=E8=B4=A6=E5=8F=B7=E7=9A=84=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/xkrs/common/config/WebSecurityConfig.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/xkrs/common/config/WebSecurityConfig.java b/src/main/java/com/xkrs/common/config/WebSecurityConfig.java index d03fe2b..170d0f7 100644 --- a/src/main/java/com/xkrs/common/config/WebSecurityConfig.java +++ b/src/main/java/com/xkrs/common/config/WebSecurityConfig.java @@ -46,6 +46,7 @@ class WebSecurityConfig extends WebSecurityConfigurerAdapter { .antMatchers(HttpMethod.GET,"/excelOutWork").permitAll() .antMatchers(HttpMethod.GET,"/selectMemberAndWorkHour").permitAll() .antMatchers(HttpMethod.POST,"/api/user/findUserByOpenId").permitAll() + .antMatchers(HttpMethod.POST,"/api/user/updateOpenIdByPhone").permitAll() // 所有其它请求需要身份认证 .anyRequest().authenticated() .and()