gitlab-org--gitlab-foss/lib/gitlab/error_tracking/error.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
608 B
Ruby
Raw Normal View History

2019-01-09 16:04:27 -05:00
# frozen_string_literal: true
# This should be in the ErrorTracking namespace. For more details, see:
# https://gitlab.com/gitlab-org/gitlab/-/issues/323342
2019-01-09 16:04:27 -05:00
module Gitlab
module ErrorTracking
class Error
include ActiveModel::Model
include GlobalID::Identification
2019-01-09 16:04:27 -05:00
attr_accessor :id, :title, :type, :user_count, :count,
:first_seen, :last_seen, :message, :culprit,
:external_url, :project_id, :project_name, :project_slug,
:short_id, :status, :frequency
def self.declarative_policy_class
'ErrorTracking::BasePolicy'
end
2019-01-09 16:04:27 -05:00
end
end
end