From 19f963e688b672c2dba9eb77aeea57b4eab62829 Mon Sep 17 00:00:00 2001
From: gongzuming <gongzuming>
Date: 星期二, 29 十月 2024 11:34:14 +0800
Subject: [PATCH] 菜单优化

---
 src/main/java/com/mzl/flower/config/ResourceServerConfig.java |    4 ++++
 1 files changed, 4 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 c77de72..416a92e 100644
--- a/src/main/java/com/mzl/flower/config/ResourceServerConfig.java
+++ b/src/main/java/com/mzl/flower/config/ResourceServerConfig.java
@@ -38,6 +38,7 @@
                 .authorizeRequests()
                 .antMatchers("/api/login/**").permitAll()
                 .antMatchers("/api/pub/**").permitAll()
+                .antMatchers("/api/advertisement/**").permitAll()
                 .antMatchers("/api/ua/**").permitAll()
                 .antMatchers("/api/code/value").permitAll()
                 .antMatchers("/api/code/multiple").permitAll()
@@ -51,10 +52,13 @@
                 .antMatchers("/api/customer/flower/list/view").permitAll()
                 .antMatchers("/api/customer/flower/up/stock").permitAll()
                 .antMatchers("api/pub/customer/home/**").permitAll()
+                .antMatchers("/api/customer/point/goods/**").permitAll()
                 .antMatchers("/api/upload/oss/file").permitAll()
                 .antMatchers("/api/flower/zone/list").permitAll()
                 .antMatchers("/api/config/content/list/view").permitAll()
+                .antMatchers("/api/v2/coupon/home/alert").permitAll()
                 .antMatchers("/api/customer/partner/name").permitAll()
+                .antMatchers("/api/v2/coupon/app/home/alert").permitAll()
                 .antMatchers("/api/**").authenticated();//配置访问控制,必须认证过后才可以访问
 
     }

--
Gitblit v1.9.3