|
@@ -21,7 +21,7 @@ public class WebMvcConfig implements WebMvcConfigurer {
|
|
|
|
|
|
@Override
|
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
|
- registry.addInterceptor(permissionInterceptor).addPathPatterns("/**");
|
|
|
+ registry.addInterceptor(permissionInterceptor).addPathPatterns("/**").excludePathPatterns("/devops");
|
|
|
registry.addInterceptor(cookieInterceptor).addPathPatterns("/**");
|
|
|
}
|
|
|
|