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-service
Commits
948c524e
Commit
948c524e
authored
1 year ago
by
Rahul Bowade
Browse files
Options
Download
Patches
Plain Diff
Adding code to sent org id in response during login
parent
963b4ae4
github/fork/rahulbowade/feature_ticket_creation
1 merge request
!9
Adding code to sent org id in response during login
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/org/upsmf/grievance/dto/LoginDto.java
+10
-0
src/main/java/org/upsmf/grievance/dto/LoginDto.java
src/main/java/org/upsmf/grievance/service/impl/UserServiceImpl.java
+1
-0
...ava/org/upsmf/grievance/service/impl/UserServiceImpl.java
with
11 additions
and
0 deletions
+11
-0
src/main/java/org/upsmf/grievance/dto/LoginDto.java
+
10
−
0
View file @
948c524e
...
...
@@ -14,6 +14,16 @@ public class LoginDto {
private
String
imageUrl
;
private
Long
orgId
;
public
Long
getOrgId
()
{
return
orgId
;
}
public
void
setOrgId
(
Long
orgId
)
{
this
.
orgId
=
orgId
;
}
public
String
getAuthToken
()
{
return
authToken
;
}
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/upsmf/grievance/service/impl/UserServiceImpl.java
+
1
−
0
View file @
948c524e
...
...
@@ -417,6 +417,7 @@ public class UserServiceImpl implements UserDetailsService, UserService {
userDao
.
getAuthDomain
(
userDto
);
if
(
authenticate
(
userDto
))
{
LoginDto
loginData
=
userDao
.
login
(
userDto
);
loginData
.
setOrgId
(
userDto
.
getOrgId
());
if
(!
StringUtils
.
isBlank
(
userObject
.
getImagePath
())
&&
userObject
.
getImagePath
().
contains
(
USERPROFILE
))
{
S3Config
s3values
=
superAdminDao
.
getS3Access
();
String
url
=
S3FileManager
.
getPreSignedURL
(
s3values
,
userObject
.
getImagePath
());
...
...
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