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:
authorMike Greiling <mike@pixelcog.com>2018-11-06 23:26:30 +0300
committerThong Kuah <tkuah@gitlab.com>2018-11-08 13:28:30 +0300
commit1dba5dbc3ad227aa0d3252efffb2dd1b2078eb0d (patch)
tree6a088996ca01f6dfab4e9da8851ff32c00dc539a /app/presenters
parent5a042ef2fbe1bd57b9428c89b49d2fa1e248ad46 (diff)
Update empty state for group clusters index
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/clusterable_presenter.rb4
-rw-r--r--app/presenters/group_clusterable_presenter.rb4
-rw-r--r--app/presenters/project_clusterable_presenter.rb4
3 files changed, 12 insertions, 0 deletions
diff --git a/app/presenters/clusterable_presenter.rb b/app/presenters/clusterable_presenter.rb
index cff0e74d6ea..9cc93d7f0c6 100644
--- a/app/presenters/clusterable_presenter.rb
+++ b/app/presenters/clusterable_presenter.rb
@@ -43,4 +43,8 @@ class ClusterablePresenter < Gitlab::View::Presenter::Delegated
def cluster_path(cluster, params = {})
raise NotImplementedError
end
+
+ def is_project?
+ raise NotImplementedError
+ end
end
diff --git a/app/presenters/group_clusterable_presenter.rb b/app/presenters/group_clusterable_presenter.rb
index 22d3ba9db35..5a893559f12 100644
--- a/app/presenters/group_clusterable_presenter.rb
+++ b/app/presenters/group_clusterable_presenter.rb
@@ -12,4 +12,8 @@ class GroupClusterablePresenter < ClusterablePresenter
def cluster_path(cluster, params = {})
group_cluster_path(clusterable, cluster, params)
end
+
+ def is_project?
+ false
+ end
end
diff --git a/app/presenters/project_clusterable_presenter.rb b/app/presenters/project_clusterable_presenter.rb
index 12077b2e735..4b74c9beb95 100644
--- a/app/presenters/project_clusterable_presenter.rb
+++ b/app/presenters/project_clusterable_presenter.rb
@@ -12,4 +12,8 @@ class ProjectClusterablePresenter < ClusterablePresenter
def cluster_path(cluster, params = {})
project_cluster_path(clusterable, cluster, params)
end
+
+ def is_project?
+ true
+ end
end