summaryrefslogtreecommitdiff
path: root/app/serializers/project_mirror_entity.rb
blob: c13cc3276a7444fc31137c434cb8036c5261e27e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ProjectMirrorEntity < Grape::Entity
  expose :id

  expose :remote_mirrors_attributes, using: RemoteMirrorEntity do |project|
    project.remote_mirrors
  end
end