summaryrefslogtreecommitdiff
path: root/lib/gitlab/error_tracking/project.rb
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