| | |
| | | .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();//配置访问控制,必须认证过后才可以访问 |
| | | |
| | | } |