summaryrefslogtreecommitdiff
path: root/app/models/epic.rb
blob: 286b855de3f17946c1d3f65d39c4b6592104baa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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_prefix_escaped
    '&amp;'
  end
end