debian-mirror-gitlab/app/serializers/error_tracking/error_entity.rb
2019-02-15 15:39:39 +05:30

11 lines
302 B
Ruby

# 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