diff options
Diffstat (limited to 'app/models/epic.rb')
-rw-r--r-- | app/models/epic.rb | 9 |
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 |