package com.nebula.erp.sales.config;

import com.nebula.erp.sales.interceptor.JwtInterceptor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class WebConfig implements WebMvcConfigurer {

    @Autowired
    private JwtInterceptor jwtInterceptor;

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        // Add the JWT interceptor for all API endpoints
        registry.addInterceptor(jwtInterceptor)
                .addPathPatterns("/api/**").// Adjust this path to your API prefix if needed
                excludePathPatterns("/api/public/**","/v3/api-docs/**","/swagger-ui/**","/swagger-ui.html");
    }
}