summaryrefslogtreecommitdiff
path: root/app/presenters
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2019-09-02 20:15:15 +1200
committerThong Kuah <tkuah@gitlab.com>2019-09-03 11:29:57 +1200
commit1894c6ebe83981d1a6d4dfdc4cb551c2184966c7 (patch)
treebb56c495808370f67231a82d37d6668f4fe7e014 /app/presenters
parente6fb109d459d9aed8401df5faab4f7c91f8f3429 (diff)
downloadgitlab-ce-1894c6ebe83981d1a6d4dfdc4cb551c2184966c7.tar.gz
Add facade which will always return nil in CEclusterable_cluster_environments_path
This method will be overridden in EE
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/clusterable_presenter.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/presenters/clusterable_presenter.rb b/app/presenters/clusterable_presenter.rb
index fff6d23efdf..d1bf0344b66 100644
--- a/app/presenters/clusterable_presenter.rb
+++ b/app/presenters/clusterable_presenter.rb
@@ -53,6 +53,11 @@ class ClusterablePresenter < Gitlab::View::Presenter::Delegated
raise NotImplementedError
end
+ # Will be overidden in EE
+ def environments_cluster_path(cluster)
+ nil
+ end
+
def empty_state_help_text
nil
end