12 lines
265 B
Ruby
12 lines
265 B
Ruby
|
class ProjectMirrorEntity < Grape::Entity
|
||
|
expose :id
|
||
|
|
||
|
expose :remote_mirrors_attributes do |project|
|
||
|
next [] unless project.remote_mirrors.present?
|
||
|
|
||
|
project.remote_mirrors.map do |remote|
|
||
|
remote.as_json(only: %i[id url enabled])
|
||
|
end
|
||
|
end
|
||
|
end
|