收紧 GalleryManage 子路径鉴权并更新项目说明

This commit is contained in:
root
2026-09-14 19:17:23 +08:00
parent 850819ed86
commit a288846552
2 changed files with 5 additions and 5 deletions
@@ -18,7 +18,7 @@ public class InterceptorConfiguration implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(getPersonalInterceptor()).addPathPatterns("/personal/**", "/remote/**");
registry.addInterceptor(taskHandlerInterceptor).addPathPatterns("/GalleryManage", "/validate");
registry.addInterceptor(taskHandlerInterceptor).addPathPatterns("/GalleryManage", "/GalleryManage/**", "/validate");
registry.addInterceptor(getHumanInterceptor()).addPathPatterns("/", "/mobile");
}