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
Grievance
Commits
f23eb107
Commit
f23eb107
authored
1 year ago
by
shishir suman
Browse files
Options
Download
Patches
Plain Diff
bug fixes
parent
6cff77cd
UPHRH_7903_mobile_otp
UAT
1 merge request
!61
Uphrh 7903 mobile otp
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/main/java/org/upsmf/grievance/controller/UserController.java
+12
-3
...n/java/org/upsmf/grievance/controller/UserController.java
src/main/java/org/upsmf/grievance/service/IntegrationService.java
+2
-1
.../java/org/upsmf/grievance/service/IntegrationService.java
src/main/java/org/upsmf/grievance/service/impl/IntegrationServiceImpl.java
+1
-1
.../upsmf/grievance/service/impl/IntegrationServiceImpl.java
with
15 additions
and
5 deletions
+15
-5
src/main/java/org/upsmf/grievance/controller/UserController.java
+
12
−
3
View file @
f23eb107
...
...
@@ -144,10 +144,19 @@ public class UserController {
@PostMapping
(
"/activate"
)
public
ResponseEntity
activateUser
(
@RequestBody
JsonNode
payload
)
{
try
{
ResponseEntity
<
?
>
response
=
integrationService
.
activateUser
(
payload
);
ResponseEntity
<
Response
>
response
=
integrationService
.
activateUser
(
payload
);
if
(
response
.
getStatusCode
().
value
()
==
HttpStatus
.
OK
.
value
())
{
User
user
=
(
User
)
response
.
getBody
();
return
createUserResponse
(
user
);
log
.
info
(
"activating user - {}"
,
response
);
Response
responseBody
=
response
.
getBody
();
log
.
info
(
"activating user - response body {}"
,
responseBody
);
if
(
responseBody
!=
null
&&
responseBody
.
getBody
()
!=
null
&&
responseBody
.
getStatus
()
==
HttpStatus
.
OK
.
value
())
{
User
user
=
(
User
)
responseBody
.
getBody
();
log
.
info
(
"activating user - response body | user {}"
,
user
);
return
createUserResponse
(
user
);
}
}
return
response
;
}
catch
(
Exception
e
)
{
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/upsmf/grievance/service/IntegrationService.java
+
2
−
1
View file @
f23eb107
...
...
@@ -7,6 +7,7 @@ import org.upsmf.grievance.dto.CreateUserDto;
import
org.upsmf.grievance.dto.UpdateUserDto
;
import
org.upsmf.grievance.dto.UserResponseDto
;
import
org.upsmf.grievance.model.User
;
import
org.upsmf.grievance.model.reponse.Response
;
import
java.util.List
;
import
java.util.Optional
;
...
...
@@ -28,7 +29,7 @@ public interface IntegrationService {
void
assignRole
(
Long
userId
,
Long
roleId
)
throws
NotFoundException
;
ResponseEntity
<
?
>
activateUser
(
JsonNode
payload
)
throws
Exception
;
ResponseEntity
<
Response
>
activateUser
(
JsonNode
payload
)
throws
Exception
;
User
deactivateUser
(
JsonNode
payload
)
throws
Exception
;
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/upsmf/grievance/service/impl/IntegrationServiceImpl.java
+
1
−
1
View file @
f23eb107
...
...
@@ -835,7 +835,7 @@ public class IntegrationServiceImpl implements IntegrationService {
}
@Override
public
ResponseEntity
<
?
>
activateUser
(
JsonNode
payload
)
throws
Exception
{
public
ResponseEntity
<
Response
>
activateUser
(
JsonNode
payload
)
throws
Exception
{
long
id
=
payload
.
get
(
"id"
).
asLong
(-
1
);
if
(
id
>
0
)
{
Optional
<
User
>
user
=
userRepository
.
findById
(
id
);
...
...
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