Commit e1f91086 authored by shishir suman's avatar shishir suman
Browse files

temp fix for RequestInterceptor

No related merge requests found
Showing with 8 additions and 0 deletions
+8 -0
......@@ -26,9 +26,15 @@ public class RequestInterceptor extends BaseController implements HandlerInterce
@Value("${user.management.exam.fee.auth.token}")
private String userManagementAuthToken;
@Value("${request.interceptor.enabled}")
private String isInterceptorEnabled;
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception {
if("true".equalsIgnoreCase(isInterceptorEnabled)) {
return Boolean.TRUE;
}
if(request.getRequestURI().endsWith("login")) {
return Boolean.TRUE;
}
......
......@@ -122,3 +122,5 @@ spring.mail.username=upsmf.otp@upsmfac.org
spring.mail.password=
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
request.interceptor.enabled=true
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment