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