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

error_event_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: 6cf0e6e3ae25e845ff62fbee41fb6e5a394e13f2 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module ErrorTracking
  class ErrorEventEntity < Grape::Entity
    expose :issue_id, :date_received, :stack_trace_entries
  end
end