2018-08-18 07:19:57 -04:00
# frozen_string_literal: true
2018-07-25 07:05:40 -04:00
module MirrorHelper
def mirrors_form_data_attributes
2018-11-12 05:52:48 -05:00
{
project_mirror_ssh_endpoint : ssh_host_keys_project_mirror_path ( @project , :json ) ,
project_mirror_endpoint : project_mirror_path ( @project , :json )
}
2018-07-25 07:05:40 -04:00
end
2019-05-01 08:16:03 -04:00
def mirror_lfs_sync_message
2020-10-14 17:08:38 -04:00
docs_link_url = help_page_path ( 'topics/git/lfs/index' )
docs_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">' . html_safe % { url : docs_link_url }
html_escape ( _ ( 'Git LFS objects will be synced if LFS is %{docs_link_start}enabled for the project%{docs_link_end}. Push mirrors will %{strong_open}not%{strong_close} sync LFS objects over SSH.' ) ) %
{ docs_link_start : docs_link_start , docs_link_end : '</a>' . html_safe , strong_open : '<strong>' . html_safe , strong_close : '</strong>' . html_safe }
2019-05-01 08:16:03 -04:00
end
2018-08-01 19:49:19 -04:00
end
2019-09-13 09:26:31 -04:00
2021-05-11 17:10:21 -04:00
MirrorHelper . prepend_mod_with ( 'MirrorHelper' )