debian-mirror-gitlab/lib/gitlab/error_tracking/project.rb
2019-03-02 22:35:43 +05:30

17 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