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

error_entity.rb « error_tracking « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91388e7c3ad74a1bbfd95bfe98a4e34acc0b02ce (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module ErrorTracking
  class ErrorEntity < Grape::Entity
    expose :id, :title, :type, :user_count, :count,
      :first_seen, :last_seen, :message, :culprit,
      :external_url, :project_id, :project_name, :project_slug,
      :short_id, :status, :frequency
  end
end