From ae1471f378f399f76518539ec8992e64a3673436 Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期三, 08 一月 2025 15:26:06 +0800 Subject: [PATCH] 1.订单提交:订单最小金额配置 --- 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 17cbe9a..a16ee31 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() @@ -55,7 +56,10 @@ .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("/v2/config-param/base/info").permitAll() .antMatchers("/api/**").authenticated();//配置访问控制,必须认证过后才可以访问 } -- Gitblit v1.9.3