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

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

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)
    }
  end

  def mirror_lfs_sync_message
    _('The Git LFS objects will <strong>not</strong> be synced.').html_safe
  end
end

MirrorHelper.prepend_if_ee('EE::MirrorHelper')