debian-mirror-gitlab/app/presenters/project_clusterable_presenter.rb

48 lines
1.6 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
class ProjectClusterablePresenter < ClusterablePresenter
2019-02-15 15:39:39 +05:30
extend ::Gitlab::Utils::Override
include ActionView::Helpers::UrlHelper
override :cluster_status_cluster_path
2018-12-13 13:39:08 +05:30
def cluster_status_cluster_path(cluster, params = {})
cluster_status_project_cluster_path(clusterable, cluster, params)
end
2019-02-15 15:39:39 +05:30
override :install_applications_cluster_path
2018-12-13 13:39:08 +05:30
def install_applications_cluster_path(cluster, application)
install_applications_project_cluster_path(clusterable, cluster, application)
end
2019-07-07 11:18:12 +05:30
override :update_applications_cluster_path
def update_applications_cluster_path(cluster, application)
update_applications_project_cluster_path(clusterable, cluster, application)
end
2020-01-01 13:55:28 +05:30
override :clear_cluster_cache_path
def clear_cluster_cache_path(cluster)
clear_cache_project_cluster_path(clusterable, cluster)
end
2019-02-15 15:39:39 +05:30
override :cluster_path
2018-12-13 13:39:08 +05:30
def cluster_path(cluster, params = {})
project_cluster_path(clusterable, cluster, params)
end
2019-02-15 15:39:39 +05:30
override :sidebar_text
def sidebar_text
s_('ClusterIntegration|With a Kubernetes cluster associated to this project, you can use review apps, deploy your applications, run your pipelines, and much more in an easy way.')
end
override :learn_more_link
def learn_more_link
link_to(s_('ClusterIntegration|Learn more about Kubernetes'), help_page_path('user/project/clusters/index'), target: '_blank', rel: 'noopener noreferrer')
end
2020-07-28 23:09:34 +05:30
def metrics_dashboard_path(cluster)
metrics_dashboard_project_cluster_path(clusterable, cluster)
end
2018-12-13 13:39:08 +05:30
end
2019-12-04 20:38:33 +05:30
ProjectClusterablePresenter.prepend_if_ee('EE::ProjectClusterablePresenter')