gitlab-org--gitlab-foss/app/helpers/mirror_helper.rb

17 lines
516 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-07-25 11:05:40 +00:00
module MirrorHelper
def mirrors_form_data_attributes
{
project_mirror_ssh_endpoint: ssh_host_keys_project_mirror_path(@project, :json),
project_mirror_endpoint: project_mirror_path(@project, :json)
}
2018-07-25 11:05:40 +00:00
end
2019-05-01 12:16:03 +00:00
def mirror_lfs_sync_message
html_escape(_('The Git LFS objects will %{strong_open}not%{strong_close} be synced.')) % { strong_open: '<strong>'.html_safe, strong_close: '</strong>'.html_safe }
2019-05-01 12:16:03 +00:00
end
2018-08-01 23:49:19 +00:00
end
MirrorHelper.prepend_if_ee('EE::MirrorHelper')