summaryrefslogtreecommitdiff
path: root/lib/api/entities/award_emoji.rb
blob: 40dc38b1900ed0dfd1fa39c696eb08e04cd5ef54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    class AwardEmoji < Grape::Entity
      expose :id
      expose :name
      expose :user, using: Entities::UserBasic
      expose :created_at, :updated_at
      expose :awardable_id, :awardable_type
      expose :url
    end
  end
end