summaryrefslogtreecommitdiff
path: root/app/services/system_notes/incident_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/system_notes/incident_service.rb')
-rw-r--r--app/services/system_notes/incident_service.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/services/system_notes/incident_service.rb b/app/services/system_notes/incident_service.rb
index 4628662f0e9..785291e0637 100644
--- a/app/services/system_notes/incident_service.rb
+++ b/app/services/system_notes/incident_service.rb
@@ -25,5 +25,11 @@ module SystemNotes
)
end
end
+
+ def resolve_incident_status
+ body = 'changed the status to **Resolved** by closing the incident'
+
+ create_note(NoteSummary.new(noteable, project, author, body, action: 'status'))
+ end
end
end