Files
gitlab-foss/lib/api/entities/project_scope_link.rb
2023-06-02 12:06:59 +00:00

11 lines
257 B
Ruby

# frozen_string_literal: true
module API
module Entities
class ProjectScopeLink < Grape::Entity
expose :source_project_id, documentation: { type: 'integer' }
expose :target_project_id, documentation: { type: 'integer' }
end
end
end