9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'app/helpers/container_registry/container_registry_helper.rb', line 9
def project_container_registry_template_data(project, connection_error, invalid_path_error)
{
endpoint: project_container_registry_index_path(project),
expiration_policy: project.container_expiration_policy.to_json,
no_containers_image: image_path('illustrations/status/status-nothing-md.svg'),
containers_error_image: image_path('illustrations/status/status-fail-md.svg'),
repository_url: escape_once(project.container_registry_url),
registry_host_url_with_port: escape_once(registry_config.host_port),
project_path: project.full_path,
gid_prefix: container_repository_gid_prefix,
is_admin: current_user&.admin.to_s,
show_cleanup_policy_link: show_cleanup_policy_link(project).to_s,
cleanup_policies_settings_path: cleanup_image_tags_project_settings_packages_and_registries_path(project),
show_container_registry_settings: show_container_registry_settings(project).to_s,
settings_path: project_settings_packages_and_registries_path(project),
connection_error: (!!connection_error).to_s,
invalid_path_error: (!!invalid_path_error).to_s,
user_callouts_path: callouts_path,
user_callout_id: Users::CalloutsHelper::UNFINISHED_TAG_CLEANUP_CALLOUT,
is_metadata_database_enabled: ContainerRegistry::GitlabApiClient.supports_gitlab_api?.to_s,
show_unfinished_tag_cleanup_callout: show_unfinished_tag_cleanup_callout?.to_s
}
end
|