Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEva Kadlecová <evka.kadl@gmail.com>2018-09-09 21:08:21 +0300
committerEva Kadlecová <evka.kadl@gmail.com>2018-09-09 22:43:37 +0300
commit997dda50f4567cf218df80c0fd5fe64afb18bf2e (patch)
treeabd34c4daf30c0cd03fd6d39b0ea0520b39baf08 /app/services/system_note_service.rb
parent120ce02e5e7e72654cb42edddc25ff3b057ec136 (diff)
Add system note when due date is changed
Diffstat (limited to 'app/services/system_note_service.rb')
-rw-r--r--app/services/system_note_service.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb
index dda89830179..ba6709c010b 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -160,6 +160,26 @@ module SystemNoteService
create_note(NoteSummary.new(noteable, project, author, body, action: 'milestone'))
end
+ # Called when the due_date of a Noteable is changed
+ #
+ # noteable - Noteable object
+ # project - Project owning noteable
+ # author - User performing the change
+ # due_date - Due date being assigned, or nil
+ #
+ # Example Note text:
+ #
+ # "removed due date"
+ #
+ # "changed due date to September 20, 2018"
+ #
+ # Returns the created Note object
+ def change_due_date(noteable, project, author, due_date)
+ body = due_date ? "changed due date to #{due_date.to_s(:long)}" : 'removed due date'
+
+ create_note(NoteSummary.new(noteable, project, author, body, action: 'due_date'))
+ end
+
# Called when the estimated time of a Noteable is changed
#
# noteable - Noteable object