Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #5 from Nike-Inc/bugfix/wrong_user_and_datetime_ge…
Browse files Browse the repository at this point in the history
…tting_set

Fix bug introduced by the riposte port and the migration from Juke to…
  • Loading branch information
fieldju authored Dec 12, 2016
2 parents 90086fe + 6d4bda1 commit 060bc03
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ public void updateUserGroupPermission(final String safeDepositBoxId,
record.setSdboxId(safeDepositBoxId);
record.setUserGroupId(possibleUserGroupRecord.get().getId());
record.setRoleId(userGroupPermission.getRoleId());
record.setLastUpdatedBy(userGroupPermission.getLastUpdatedBy());
record.setLastUpdatedTs(userGroupPermission.getLastUpdatedTs());
record.setLastUpdatedBy(user);
record.setLastUpdatedTs(dateTime);
userGroupDao.updateUserGroupPermission(record);
}

Expand Down

0 comments on commit 060bc03

Please sign in to comment.