Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_entity.rb « error_tracking « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 405d87ca0d0550d99af816b7f5d1fafffe6b3fe6 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module ErrorTracking
  class ProjectEntity < Grape::Entity
    expose(*Gitlab::ErrorTracking::Project::ACCESSORS)
  end
end