summaryrefslogtreecommitdiff
path: root/lib/gitlab/error_tracking/repo.rb
blob: e88ac58ff0f49815fd9b9f850e1510a26450a6c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

# This should be in the ErrorTracking namespace. For more details, see:
# https://gitlab.com/gitlab-org/gitlab/-/issues/323342
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