2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
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
|