diff options
Diffstat (limited to 'app/presenters/project_clusterable_presenter.rb')
-rw-r--r-- | app/presenters/project_clusterable_presenter.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/presenters/project_clusterable_presenter.rb b/app/presenters/project_clusterable_presenter.rb index f986b5584a3..bd149cdcc70 100644 --- a/app/presenters/project_clusterable_presenter.rb +++ b/app/presenters/project_clusterable_presenter.rb @@ -9,6 +9,26 @@ class ProjectClusterablePresenter < ClusterablePresenter new_project_cluster_path(clusterable) end + def create_user_clusters_path + create_user_project_clusters_path(clusterable) + end + + def create_gcp_clusters_path + create_gcp_project_clusters_path(clusterable) + end + + def cluster_status_cluster_path(cluster, params = {}) + cluster_status_project_cluster_path(clusterable, cluster, params) + end + + def install_applications_cluster_path(cluster, application) + install_applications_project_cluster_path(clusterable, cluster, application) + end + + def cluster_path(cluster, params = {}) + project_cluster_path(clusterable, cluster, params) + end + def clusterable_params { project_id: clusterable.to_param, namespace_id: clusterable.namespace.to_param } end |