12 lines
373 B
Ruby
12 lines
373 B
Ruby
# frozen_string_literal: true
|
|
|
|
# ThrottledTouch can be used to throttle the number of updates triggered by
|
|
# calling "touch" on an ActiveRecord model.
|
|
module ThrottledTouch
|
|
# The amount of time to wait before "touch" can update a record again.
|
|
TOUCH_INTERVAL = 1.minute
|
|
|
|
def touch(*args, **kwargs)
|
|
super if (Time.zone.now - updated_at) > TOUCH_INTERVAL
|
|
end
|
|
end
|