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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/presenters/clusterable_presenter.rb')
-rw-r--r--app/presenters/clusterable_presenter.rb12
1 files changed, 4 insertions, 8 deletions
diff --git a/app/presenters/clusterable_presenter.rb b/app/presenters/clusterable_presenter.rb
index 61e00b31185..cff0e74d6ea 100644
--- a/app/presenters/clusterable_presenter.rb
+++ b/app/presenters/clusterable_presenter.rb
@@ -17,23 +17,19 @@ class ClusterablePresenter < Gitlab::View::Presenter::Delegated
end
def index_path
- raise NotImplementedError
+ polymorphic_path([clusterable, :clusters])
end
def new_path
- raise NotImplementedError
- end
-
- def clusterable_params
- raise NotImplementedError
+ new_polymorphic_path([clusterable, :cluster])
end
def create_user_clusters_path
- raise NotImplementedError
+ polymorphic_path([clusterable, :clusters], action: :create_user)
end
def create_gcp_clusters_path
- raise NotImplementedError
+ polymorphic_path([clusterable, :clusters], action: :create_gcp)
end
def cluster_status_cluster_path(cluster, params = {})