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

Commit

Permalink
Fix bug introduced by the riposte port and the migration from Juke to…
Browse files Browse the repository at this point in the history
… Mybatis
  • Loading branch information
fieldju committed Dec 11, 2016
1 parent 929b6ce commit 6d4bda1
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 6d4bda1

Please sign in to comment.