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:
authorMayra Cabrera <mcabrera@gitlab.com>2018-05-15 21:03:09 +0300
committerMayra Cabrera <mcabrera@gitlab.com>2018-05-15 22:24:11 +0300
commit86ef8221778d2aff630feecfa15ba70514983dbc (patch)
treeaa760ef121c74a3c97131963f9c6c0790acf1f15 /app/presenters/generic_commit_status_presenter.rb
parentbdf279b151c2a530155425f352daac0576f1ec60 (diff)
Makes CommitStatus and GenericCommitStatus respond to presentable
methods Includes Presentable module into CommitStatus. This fixes presenter methods being called on those classes. Closes #46177
Diffstat (limited to 'app/presenters/generic_commit_status_presenter.rb')
-rw-r--r--app/presenters/generic_commit_status_presenter.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/presenters/generic_commit_status_presenter.rb b/app/presenters/generic_commit_status_presenter.rb
new file mode 100644
index 00000000000..da09df29a37
--- /dev/null
+++ b/app/presenters/generic_commit_status_presenter.rb
@@ -0,0 +1,2 @@
+class GenericCommitStatusPresenter < CommitStatusPresenter
+end