| | |
| | | .antMatchers("/api/customer/flower/list").permitAll() |
| | | .antMatchers("/api/customer/flower/list/view").permitAll() |
| | | .antMatchers("/api/customer/flower/up/stock").permitAll() |
| | | // .antMatchers("/api/customer/info/**").permitAll() |
| | | .antMatchers("api/pub/customer/home/**").permitAll() |
| | | .antMatchers("/api/customer/point/goods/**").permitAll() |
| | | .antMatchers("/api/upload/oss/file").permitAll() |
| | |
| | | .antMatchers("/api/v2/coupon/app/home/alert").permitAll() |
| | | .antMatchers("/v2/config-param/base/info").permitAll() |
| | | .antMatchers("/api/supplier/**").permitAll() |
| | | .antMatchers("/api/customer/center").permitAll() |
| | | .antMatchers("/api/**").authenticated();//配置访问控制,必须认证过后才可以访问 |
| | | |
| | | } |