2020-02-09 13:09:01 -05:00
|
|
|
# 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
|
2022-04-02 08:08:25 -04:00
|
|
|
expose :url
|
2020-02-09 13:09:01 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|