2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
# This should be in the ErrorTracking namespace. For more details, see:
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/323342
|
2019-02-15 15:39:39 +05:30
|
|
|
module Gitlab
|
|
|
|
module ErrorTracking
|
|
|
|
class Error
|
|
|
|
include ActiveModel::Model
|
2020-03-13 15:44:24 +05:30
|
|
|
include GlobalID::Identification
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
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
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
def self.declarative_policy_class
|
|
|
|
'ErrorTracking::BasePolicy'
|
|
|
|
end
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|