From 227a7460ec73dede14cf16f91e9a4f89f98acd4e Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期三, 25 十二月 2024 10:11:20 +0800
Subject: [PATCH] add: 花材销售统计商品分类

---
 src/main/java/com/mzl/flower/config/ResourceServerConfig.java |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/mzl/flower/config/ResourceServerConfig.java b/src/main/java/com/mzl/flower/config/ResourceServerConfig.java
index 416a92e..566cc62 100644
--- a/src/main/java/com/mzl/flower/config/ResourceServerConfig.java
+++ b/src/main/java/com/mzl/flower/config/ResourceServerConfig.java
@@ -37,6 +37,7 @@
         httpSecurity
                 .authorizeRequests()
                 .antMatchers("/api/login/**").permitAll()
+                .antMatchers("/api/wx/jscode2session").permitAll()
                 .antMatchers("/api/pub/**").permitAll()
                 .antMatchers("/api/advertisement/**").permitAll()
                 .antMatchers("/api/ua/**").permitAll()
@@ -59,6 +60,7 @@
                 .antMatchers("/api/v2/coupon/home/alert").permitAll()
                 .antMatchers("/api/customer/partner/name").permitAll()
                 .antMatchers("/api/v2/coupon/app/home/alert").permitAll()
+                .antMatchers("/v2/config-param/base/info").permitAll()
                 .antMatchers("/api/**").authenticated();//配置访问控制,必须认证过后才可以访问
 
     }

--
Gitblit v1.9.3