debian-mirror-gitlab/lib/gitlab/timeless.rb
2021-11-11 11:23:49 +05:30

21 lines
450 B
Ruby

# frozen_string_literal: true
module Gitlab
module Timeless
def self.timeless(model, &block)
original_record_timestamps = model.record_timestamps
model.record_timestamps = false
# negative arity means arguments are optional
if block.arity == 1 || block.arity < 0
block.call(model)
else
block.call
end
ensure
model.record_timestamps = original_record_timestamps
end
end
end