Skip to content
Snippets Groups Projects
Commit 325a5baf authored by Paco Guzman's avatar Paco Guzman
Browse files

Simpler arguments passed to named_route on toggle_award_url helper method

parent 44f718c9
No related branches found
No related tags found
1 merge request!7004Simpler arguments passed to named_route on toggle_award_url helper method
Pipeline #
Please view this file on the master branch, on stable branches it's out of date.
 
## 8.14.0 (2016-11-22)
- Simpler arguments passed to named_route on toggle_award_url helper method
 
## 8.13.0 (2016-10-22)
 
Loading
Loading
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment