Module: Mongoid::Timestamps::Updated
- Extended by:
- ActiveSupport::Concern
- Included in:
- Mongoid::Timestamps
- Defined in:
- lib/mongoid/timestamps/updated.rb
Overview
This module handles the behaviour for setting up document updated at timestamp.
Instance Method Summary collapse
-
#set_updated_at ⇒ Object
Update the updated_at field on the Document to the current time.
Instance Method Details
#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.
21 22 23 |
# File 'lib/mongoid/timestamps/updated.rb', line 21 def set_updated_at self.updated_at = Time.now.utc unless updated_at_changed? end |