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:
authorJarka Kadlecova <jarka@gitlab.com>2017-11-01 20:35:14 +0300
committerJarka Kadlecova <jarka@gitlab.com>2017-11-02 09:14:35 +0300
commit064c8949bd2cbbd304909b84f4ddac3c80827b94 (patch)
tree2eda37a87768439b4485dd161b8aa0fe809ad923 /app/models/epic.rb
parent101779e4e9fd83ef1890a7499ef9b2723fb75cbf (diff)
CE port of code changed for epics
Diffstat (limited to 'app/models/epic.rb')
-rw-r--r--app/models/epic.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/models/epic.rb b/app/models/epic.rb
new file mode 100644
index 00000000000..0d5f21fb617
--- /dev/null
+++ b/app/models/epic.rb
@@ -0,0 +1,9 @@
+# Placeholder class for model that is implemented in EE
+# It will reserve (ee#3853) '&' as a reference prefix, but the table does not exists in CE
+class Epic < ActiveRecord::Base
+ prepend EE::Epic
+
+ # TODO: this will be implemented as part of #3853
+ def to_reference
+ end
+end