b1c3955385
- we now use the hierarchy class also for epics - also rename supports_nested_groups? into supports_nested_objects? - move it to a concern
11 lines
187 B
Ruby
11 lines
187 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Descendant
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
def supports_nested_objects?
|
|
Gitlab::Database.postgresql?
|
|
end
|
|
end
|
|
end
|