summaryrefslogtreecommitdiff
path: root/lib/api/entities/user_agent_detail.rb
blob: eb6d909794e72ab0dd4618ee256ff6d0387b9fba (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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