Welcome to mirror list, hosted at ThFree Co, Russian Federation.

award_emoji.rb « widgets « work_items « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c862d7c267bc5f619f764b6bf7400b667f8836d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module WorkItems
  module Widgets
    class AwardEmoji < Base
      delegate :award_emoji, :downvotes, :upvotes, to: :work_item
    end
  end
end