We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4be7a98 commit 353ee0dCopy full SHA for 353ee0d
spring-cloud-gray-server/src/main/java/cn/springcloud/gray/server/configuration/OAuth2Config.java
@@ -116,6 +116,9 @@ public void configure(HttpSecurity http) throws Exception {
116
117
.antMatchers(HttpMethod.OPTIONS, "/gray/**").permitAll()
118
.antMatchers("/gray/service/**").authenticated()
119
+ .antMatchers("/gray/policy/**").authenticated()
120
+ .antMatchers("/gray/decision/**").authenticated()
121
+ .antMatchers("/gray/discover/**").authenticated()
122
.antMatchers("/gray/track/**").authenticated()
123
.anyRequest().permitAll()
124
.and()
0 commit comments