We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab9f54 commit e60af06Copy full SHA for e60af06
1 file changed
dojo/jira_link/views.py
@@ -285,7 +285,9 @@ def check_for_and_create_comment(parsed_json):
285
finding.notes.add(new_note)
286
finding.jira_issue.jira_change = timezone.now()
287
finding.jira_issue.save()
288
- finding.save()
+ finding.last_reviewed = note.date
289
+ finding.last_reviewed_by = author
290
+ finding.save(update_fields=["last_reviewed", "last_reviewed_by"])
291
return None
292
293
0 commit comments