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:
authorRobert Speicher <rspeicher@gmail.com>2015-05-10 01:18:50 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-05-11 07:01:15 +0300
commit686f6855c25ecfc09fdf199cb7e3fb7dd787ed28 (patch)
treec31f3b13c4607e9b422aa53d385c3c01eff89a82 /app/services/issues/reopen_service.rb
parentff3a62aad171e4211dd9c5c6e762b1b32f9921ac (diff)
Update SystemNoteService method naming conventions
Now the verb comes first, and there is no restriction on singular/plural.
Diffstat (limited to 'app/services/issues/reopen_service.rb')
-rw-r--r--app/services/issues/reopen_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/issues/reopen_service.rb b/app/services/issues/reopen_service.rb
index fbbf573e5a3..e48ca359f4f 100644
--- a/app/services/issues/reopen_service.rb
+++ b/app/services/issues/reopen_service.rb
@@ -14,7 +14,7 @@ module Issues
private
def create_note(issue)
- SystemNoteService.status_change(issue, issue.project, current_user, issue.state, nil)
+ SystemNoteService.change_status(issue, issue.project, current_user, issue.state, nil)
end
end
end