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: 93e81da5034bb20b10e6e9c04c79ad674dfb7129 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

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