summaryrefslogtreecommitdiff
path: root/app/services
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2019-08-21 07:39:27 +0000
committerThong Kuah <tkuah@gitlab.com>2019-08-21 07:39:27 +0000
commitf56e7c680ab147a116b7797be4d9640e7dcca435 (patch)
tree1619fe5e7f35f041a668d4cc615c5217513d6851 /app/services
parentab397b3652864ece302bad9cb76a7909a36c8ecf (diff)
parent8463b21982e82ccb8903c8470bd5986d9804c335 (diff)
downloadgitlab-ce-f56e7c680ab147a116b7797be4d9640e7dcca435.tar.gz
Merge branch '65427-improve-system-notes-for-zoom-links' into 'master'
Resolve "Improve system notes for Zoom links" Closes #65427 See merge request gitlab-org/gitlab-ce!31410
Diffstat (limited to 'app/services')
-rw-r--r--app/services/system_note_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb
index e30debbbe75..ee7223d6349 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -598,11 +598,11 @@ module SystemNoteService
end
def zoom_link_added(issue, project, author)
- create_note(NoteSummary.new(issue, project, author, _('a Zoom call was added to this issue'), action: 'pinned_embed'))
+ create_note(NoteSummary.new(issue, project, author, _('added a Zoom call to this issue'), action: 'pinned_embed'))
end
def zoom_link_removed(issue, project, author)
- create_note(NoteSummary.new(issue, project, author, _('a Zoom call was removed from this issue'), action: 'pinned_embed'))
+ create_note(NoteSummary.new(issue, project, author, _('removed a Zoom call from this issue'), action: 'pinned_embed'))
end
private