Skip to content

Commit

Permalink
SAK-42806 - Adding modified dates when published assessment is deleted (
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespm authored and Miguel Pellicer committed Dec 2, 2019
1 parent 61ff3f9 commit c733036
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,8 @@ public void removeAssessment(Long assessmentId, String action) {
true);
}
else {
assessment.setLastModifiedBy(AgentFacade.getAgentString());
assessment.setLastModifiedDate(new Date());
assessment.setStatus(PublishedAssessmentIfc.DEAD_STATUS);
try {
saveOrUpdate(assessment);
Expand Down

0 comments on commit c733036

Please sign in to comment.