gitlab-org--gitlab-foss/lib/api/entities/badge.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
240 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module API
module Entities
class Badge < Entities::BasicBadgeDetails
expose :id
expose :kind do |badge|
badge.type == 'ProjectBadge' ? 'project' : 'group'
end
end
end
end