7 lines
155 B
Ruby
7 lines
155 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ErrorTracking
|
|
class ProjectEntity < Grape::Entity
|
|
expose(*Gitlab::ErrorTracking::Project::ACCESSORS)
|
|
end
|
|
end
|