Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_agent_detail.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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