15 lines
293 B
Ruby
15 lines
293 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
module BulkImportInfo
|
|
def self.enabled?
|
|
Thread.current[:bulk_import]
|
|
end
|
|
|
|
def self.enable
|
|
Thread.current[:bulk_import] = true
|
|
end
|
|
|
|
def self.disable
|
|
Thread.current[:bulk_import] = false
|
|
end
|
|
end
|