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.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/presenters/clusterable_presenter.rb b/app/presenters/clusterable_presenter.rb
index c2ed40d8b0c..9558eee55a6 100644
--- a/app/presenters/clusterable_presenter.rb
+++ b/app/presenters/clusterable_presenter.rb
@@ -28,10 +28,6 @@ class ClusterablePresenter < Gitlab::View::Presenter::Delegated
polymorphic_path([clusterable, :clusters], options)
end
- def new_path(options = {})
- new_polymorphic_path([clusterable, :cluster], options)
- end
-
def connect_path
polymorphic_path([clusterable, :clusters], action: :connect)
end
@@ -40,22 +36,10 @@ class ClusterablePresenter < Gitlab::View::Presenter::Delegated
polymorphic_path([clusterable, :clusters], action: :new_cluster_docs)
end
- def authorize_aws_role_path
- polymorphic_path([clusterable, :clusters], action: :authorize_aws_role)
- end
-
def create_user_clusters_path
polymorphic_path([clusterable, :clusters], action: :create_user)
end
- def create_gcp_clusters_path
- polymorphic_path([clusterable, :clusters], action: :create_gcp)
- end
-
- def create_aws_clusters_path
- polymorphic_path([clusterable, :clusters], action: :create_aws)
- end
-
def cluster_status_cluster_path(cluster, params = {})
raise NotImplementedError
end