debian-mirror-gitlab/lib/api/entities/user_agent_detail.rb
2023-01-12 18:35:48 +00:00

12 lines
393 B
Ruby

# frozen_string_literal: true
module API
module Entities
class UserAgentDetail < Grape::Entity
expose :user_agent, documentation: { type: 'string', example: 'AppleWebKit/537.36' }
expose :ip_address, documentation: { type: 'string', example: '127.0.0.1' }
expose :submitted, as: :akismet_submitted, documentation: { type: 'boolean', example: false }
end
end
end