Commit 948c524e authored by Rahul Bowade's avatar Rahul Bowade
Browse files

Adding code to sent org id in response during login

1 merge request!9Adding code to sent org id in response during login
Showing with 11 additions and 0 deletions
+11 -0
......@@ -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;
}
......
......@@ -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());
......
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