Skip to content

Commit

Permalink
Added expiry date to payload for edit
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed May 8, 2024
1 parent 64bf93c commit b0069a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ public List<EdxSchool> findAllDistrictEdxUsers(String districtID) {
var edxUserEntity = edxUserSchoolEntity.getEdxUserEntity();
tomb.setEdxUserID(edxUserEntity.getEdxUserID().toString());
tomb.setEdxUserSchoolID(edxUserSchoolEntity.getEdxUserSchoolID().toString());
tomb.setExpiryDate(edxUserSchoolEntity.getExpiryDate().toString());
tomb.setDigitalIdentityID(edxUserEntity.getDigitalIdentityID().toString());
tomb.setEmail(edxUserEntity.getEmail());
tomb.setFullName(edxUserEntity.getFirstName() + " " + edxUserEntity.getLastName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ public class EdxDistrictSchoolUserTombstone implements Serializable {

String digitalIdentityID;

String expiryDate;

String fullName;

private List<String> schoolRoles;
Expand Down

0 comments on commit b0069a7

Please sign in to comment.