Welcome to mirror list, hosted at ThFree Co, Russian Federation.

remote_mirror_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 440e427466822c7481d645a864eb27fe744968c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class RemoteMirrorEntity < Grape::Entity
  expose :id
  expose :safe_url, as: :url
  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