16 lines
295 B
Ruby
16 lines
295 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Placeholder class for model that is implemented in EE
|
|
class Iteration < ApplicationRecord
|
|
self.table_name = 'sprints'
|
|
|
|
def self.reference_prefix
|
|
'*iteration:'
|
|
end
|
|
|
|
def self.reference_pattern
|
|
nil
|
|
end
|
|
end
|
|
|
|
Iteration.prepend_mod_with('Iteration')
|