summaryrefslogtreecommitdiff
path: root/app/models/epic.rb
blob: 91854970822d6782ff4ad0d88b637c31f385aaf9 (plain)
1
2
3
4
5
6
7
8
9
10
# Placeholder class for model that is implemented in EE
# It reserves '&' as a reference prefix, but the table does not exists in CE
class Epic < ActiveRecord::Base
  def self.reference_prefix
    '&'
  end

  def self.reference_pattern
  end
end