12 lines
266 B
Ruby
12 lines
266 B
Ruby
|
# 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
|
||
|
'&'
|
||
|
end
|
||
|
end
|