Welcome to mirror list, hosted at ThFree Co, Russian Federation.

epic.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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