16 lines
307 B
Ruby
16 lines
307 B
Ruby
# 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
|