2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
# 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
|
2018-12-05 23:21:45 +05:30
|
|
|
def self.link_reference_pattern
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def self.reference_prefix
|
|
|
|
'&'
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.reference_prefix_escaped
|
|
|
|
'&'
|
|
|
|
end
|
|
|
|
end
|