blob: 65c7cd82832e75b630c250e92f50291b82eff2c7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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
end
|