diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2016-12-20 16:46:39 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2016-12-20 16:46:39 +0000 |
commit | 4909d77d85033cefee3c17af023a0e6b89a46a1c (patch) | |
tree | 2fffbbc6584e7e467722553dc0576f42e4b9a405 | |
parent | 46920f7e371debe6af526ab9476aef6ca452185b (diff) | |
parent | 33564b113386b3b9c1606dcc2ff7251c178667e5 (diff) | |
download | gitlab-ce-4909d77d85033cefee3c17af023a0e6b89a46a1c.tar.gz |
Merge branch 'bold-wip-removed-note' into 'master'
Make 'unmarked as Work In Progress' system note more consistent
See merge request !8193
-rw-r--r-- | app/services/system_note_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb index 8b48d90f60b..7613ecd5021 100644 --- a/app/services/system_note_service.rb +++ b/app/services/system_note_service.rb @@ -146,7 +146,7 @@ module SystemNoteService end def remove_merge_request_wip(noteable, project, author) - body = 'unmarked as a Work In Progress' + body = 'unmarked as a **Work In Progress**' create_note(noteable: noteable, project: project, author: author, note: body) end |