2021-04-15 02:09:30 -04:00
|
|
|
# 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
|
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
Iteration.prepend_mod_with('Iteration')
|