Module: Mongoid::Timestamps::Updated
- Extended by:
- ActiveSupport::Concern
- Included in:
- Mongoid::Timestamps
- Defined in:
- lib/mongoid/timestamps/updated.rb,
lib/mongoid/timestamps/updated/short.rb
Overview
This module handles the behavior for setting up document updated at timestamp.
Defined Under Namespace
Modules: Short
Instance Method Summary collapse
-
#able_to_set_updated_at? ⇒ true | false
Is the updated timestamp able to be set?.
-
#set_updated_at ⇒ Object
Update the updated_at field on the Document to the current time.
Instance Method Details
#able_to_set_updated_at? ⇒ true | false
Is the updated timestamp able to be set?
40 41 42 |
# File 'lib/mongoid/timestamps/updated.rb', line 40 def able_to_set_updated_at? !frozen? && !timeless? && (new_record? || changed?) end |
#set_updated_at ⇒ Object
Update the updated_at field on the Document to the current time. This is only called on create and on save.
26 27 28 29 30 31 32 |
# File 'lib/mongoid/timestamps/updated.rb', line 26 def set_updated_at if able_to_set_updated_at? self.updated_at = Time.current unless updated_at_changed? end clear_timeless_option end |