20 lines
661 B
Java
20 lines
661 B
Java
|
|
package com.labelsys.backend.config;
|
||
|
|
|
||
|
|
import com.labelsys.backend.interceptor.AuthInterceptor;
|
||
|
|
import lombok.RequiredArgsConstructor;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
@RequiredArgsConstructor
|
||
|
|
public class WebMvcConfig implements WebMvcConfigurer {
|
||
|
|
|
||
|
|
private final AuthInterceptor authInterceptor;
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
||
|
|
registry.addInterceptor(authInterceptor).addPathPatterns("/api/**");
|
||
|
|
}
|
||
|
|
}
|