Skip to content
Snippets Groups Projects

fix: model changes for commons 0.8.2

4 files
+ 7
9
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -277,6 +277,7 @@ public class DefaultProfileService implements ProfileService {
.setMail(ldapResult.getMail())
.setFirstName(ldapResult.getFirstName())
.setLastName(ldapResult.getLastName())
.setFullName(profileData.getFullName())
.setGithubHandle(ldapResult.getGithubId())
.setTwitterHandle(profileData.getTwitterHandle())
.setPublisherAgreements(profileData.getPublisherAgreements())
@@ -287,7 +288,6 @@ public class DefaultProfileService implements ProfileService {
.setCountry(profileData.getCountry())
.setBio(profileData.getBio())
.setInterests(profileData.getInterests())
.setWorkingGroupsInterests(profileData.getWorkingGroupsInterests())
.build());
}
@@ -316,6 +316,7 @@ public class DefaultProfileService implements ProfileService {
.setMail(person.getEmail())
.setFirstName(person.getFname())
.setLastName(person.getLname())
.setFullName(profileData.getFullName())
.setGithubHandle(profileData.getGithubHandle())
.setTwitterHandle(profileData.getTwitterHandle())
.setPublisherAgreements(profileData.getPublisherAgreements())
@@ -326,7 +327,6 @@ public class DefaultProfileService implements ProfileService {
.setCountry(profileData.getCountry())
.setBio(profileData.getBio())
.setInterests(profileData.getInterests())
.setWorkingGroupsInterests(profileData.getWorkingGroupsInterests())
.build());
}
Loading