Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
examsAndAdmissions
Commits
e1f91086
Commit
e1f91086
authored
1 year ago
by
shishir suman
Browse files
Options
Download
Patches
Plain Diff
temp fix for RequestInterceptor
parent
3cd571b3
github/fork/ruksana2808/filter_bug_examCycle
development
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/com/tarento/upsmf/examsAndAdmissions/RequestInterceptor.java
+6
-0
.../tarento/upsmf/examsAndAdmissions/RequestInterceptor.java
src/main/resources/application.properties
+2
-0
src/main/resources/application.properties
with
8 additions
and
0 deletions
+8
-0
src/main/java/com/tarento/upsmf/examsAndAdmissions/RequestInterceptor.java
+
6
−
0
View file @
e1f91086
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/application.properties
+
2
−
0
View file @
e1f91086
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets