2020-03-13 15:44:24 +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
|
2020-03-13 15:44:24 +05:30
|
|
|
module Gitlab
|
|
|
|
module ErrorTracking
|
|
|
|
class Repo
|
|
|
|
attr_accessor :status, :integration_id, :project_id
|
|
|
|
|
|
|
|
def initialize(status:, integration_id:, project_id:)
|
|
|
|
@status = status
|
|
|
|
@integration_id = integration_id
|
|
|
|
@project_id = project_id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|