gitlab-org--gitlab-foss/lib/gitlab/error_tracking/project.rb
2019-01-31 10:05:29 +00:00

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