summaryrefslogtreecommitdiff
path: root/app/helpers/mirror_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/mirror_helper.rb')
-rw-r--r--app/helpers/mirror_helper.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/helpers/mirror_helper.rb b/app/helpers/mirror_helper.rb
index a4025730397..65c7cd82832 100644
--- a/app/helpers/mirror_helper.rb
+++ b/app/helpers/mirror_helper.rb
@@ -2,6 +2,9 @@
module MirrorHelper
def mirrors_form_data_attributes
- { project_mirror_endpoint: project_mirror_path(@project) }
+ {
+ project_mirror_ssh_endpoint: ssh_host_keys_project_mirror_path(@project, :json),
+ project_mirror_endpoint: project_mirror_path(@project, :json)
+ }
end
end