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:
authorPaco Guzman <pacoguzmanp@gmail.com>2016-10-19 22:58:12 +0300
committerPaco Guzman <pacoguzmanp@gmail.com>2016-10-19 22:58:12 +0300
commit325a5bafcc8a37b7d2ed1416b2952862066a914f (patch)
tree30670d0fbe51429d38b7a8ca1b6df622718e3509 /app/helpers/award_emoji_helper.rb
parent44f718c9a08ac49f0926c40d2d0d0e31ecf517f8 (diff)
Simpler arguments passed to named_route on toggle_award_url helper method
Diffstat (limited to 'app/helpers/award_emoji_helper.rb')
-rw-r--r--app/helpers/award_emoji_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/award_emoji_helper.rb b/app/helpers/award_emoji_helper.rb
index 592ffe7b89f..167b09e678f 100644
--- a/app/helpers/award_emoji_helper.rb
+++ b/app/helpers/award_emoji_helper.rb
@@ -3,8 +3,8 @@ module AwardEmojiHelper
return url_for([:toggle_award_emoji, awardable]) unless @project
if awardable.is_a?(Note)
- # We render a list of notes very frequently and calling the specific method is a lot faster than the generic one (6.5x)
- toggle_award_emoji_namespace_project_note_url(namespace_id: @project.namespace, project_id: @project, id: awardable.id)
+ # We render a list of notes very frequently and calling the specific method is a lot faster than the generic one (4.5x)
+ toggle_award_emoji_namespace_project_note_url(@project.namespace, @project, awardable.id)
else
url_for([:toggle_award_emoji, @project.namespace.becomes(Namespace), @project, awardable])
end