Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project.rb « error_tracking « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4ed8831e38621ca8ba3afd11a47b58eecb7594e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 Project
      include ActiveModel::Model

      ACCESSORS = [
        :id, :name, :status, :slug, :organization_name,
        :organization_id, :organization_slug
      ].freeze

      attr_accessor(*ACCESSORS)
    end
  end
end