debian-mirror-gitlab/app/serializers/project_mirror_entity.rb
2019-02-15 15:39:39 +05:30

10 lines
200 B
Ruby

# frozen_string_literal: true
class ProjectMirrorEntity < Grape::Entity
expose :id
expose :remote_mirrors_attributes, using: RemoteMirrorEntity do |project|
project.remote_mirrors
end
end