blob: 81cd342576fd425efa59d599a1ddd8a089699d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# frozen_string_literal: true
# Placeholder class for model that is implemented in EE
# It reserves '&' as a reference prefix, but the table does not exist in FOSS
class Epic < ApplicationRecord
include IgnorableColumns
def self.link_reference_pattern
nil
end
def self.reference_prefix
'&'
end
def self.reference_prefix_escaped
'&'
end
end
Epic.prepend_mod_with('Epic')
|