8ff68917b8
This reverts merge request !31379
17 lines
371 B
Ruby
17 lines
371 B
Ruby
# frozen_string_literal: true
|
|
|
|
module InjectEnterpriseEditionModule
|
|
def prepend_if_ee(constant)
|
|
prepend(constant.constantize) if Gitlab.ee?
|
|
end
|
|
|
|
def extend_if_ee(constant)
|
|
extend(constant.constantize) if Gitlab.ee?
|
|
end
|
|
|
|
def include_if_ee(constant)
|
|
include(constant.constantize) if Gitlab.ee?
|
|
end
|
|
end
|
|
|
|
Module.prepend(InjectEnterpriseEditionModule)
|