summaryrefslogtreecommitdiff
path: root/app/serializers/remote_mirror_entity.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/remote_mirror_entity.rb')
-rw-r--r--app/serializers/remote_mirror_entity.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/serializers/remote_mirror_entity.rb b/app/serializers/remote_mirror_entity.rb
new file mode 100644
index 00000000000..8835c6d4647
--- /dev/null
+++ b/app/serializers/remote_mirror_entity.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+class RemoteMirrorEntity < Grape::Entity
+ expose :id
+ expose :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