2018-11-12 05:52:48 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoteMirrorEntity < Grape::Entity
|
|
|
|
expose :id
|
2020-04-30 17:09:47 -04:00
|
|
|
expose :safe_url, as: :url
|
2018-11-12 05:52:48 -05:00
|
|
|
expose :enabled
|
|
|
|
|
|
|
|
expose :auth_method
|
|
|
|
expose :ssh_known_hosts
|
|
|
|
expose :ssh_public_key
|
|
|
|
|
|
|
|
expose :ssh_known_hosts_fingerprints do |remote_mirror|
|
|
|
|
remote_mirror.ssh_known_hosts_fingerprints.as_json
|
|
|
|
end
|
|
|
|
end
|