Subversion Repositories SmartDukaan

Rev

Rev 22107 | Rev 22139 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 22107 Rev 22111
Line 31... Line 31...
31
	}
31
	}
32
	
32
	
33
	@Override
33
	@Override
34
	public void addInterceptors(InterceptorRegistry registry) {
34
	public void addInterceptors(InterceptorRegistry registry) {
35
		registry.addInterceptor(authenticationInterceptor).addPathPatterns("/**").excludePathPatterns("/login", "/login/");
35
		registry.addInterceptor(authenticationInterceptor).addPathPatterns("/**").excludePathPatterns("/login", "/login/");
36
		registry.addInterceptor(roleInterceptor);
36
		registry.addInterceptor(roleInterceptor).excludePathPatterns("/login", "/login/");
37
	}
37
	}
38
	
38
	
39
}
39
}