2019-03-02 22:35:43 +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
|
2019-03-02 22:35:43 +05:30
|
|
|
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
|