From 679e1d2e90ddc85b4acab784162463eaf51d16f0 Mon Sep 17 00:00:00 2001
From: Cui Zhi Feng <7426394+wuxixiaocui@user.noreply.gitee.com>
Date: 星期四, 12 九月 2024 15:51:43 +0800
Subject: [PATCH] /api/v2/coupon/home/alert 不用登录配置

---
 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 c77de72..73cb25a 100644
--- a/src/main/java/com/mzl/flower/config/ResourceServerConfig.java
+++ b/src/main/java/com/mzl/flower/config/ResourceServerConfig.java
@@ -51,9 +51,11 @@
                 .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/**").authenticated();//配置访问控制,必须认证过后才可以访问
 

--
Gitblit v1.9.3