summaryrefslogtreecommitdiff
path: root/app/helpers/award_emoji_helper.rb
blob: 592ffe7b89f0ce8b22b3533ed46f56bde1683217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module AwardEmojiHelper
  def toggle_award_url(awardable)
    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)
    else
      url_for([:toggle_award_emoji, @project.namespace.becomes(Namespace), @project, awardable])
    end
  end
end