Module: Mongoid::Timestamps::Created
- Extended by:
- ActiveSupport::Concern
- Included in:
- Mongoid::Timestamps
- Defined in:
- lib/mongoid/timestamps/created.rb,
lib/mongoid/timestamps/created/short.rb
Overview
This module handles the behavior for setting up document created at timestamp.
Defined Under Namespace
Modules: Short
Instance Method Summary collapse
-
#set_created_at ⇒ Object
Update the created_at field on the Document to the current time.
Instance Method Details
#set_created_at ⇒ Object
Update the created_at field on the Document to the current time. This is only called on create.
25 26 27 28 29 30 31 32 |
# File 'lib/mongoid/timestamps/created.rb', line 25 def set_created_at if !timeless? && !created_at now = Time.current self.updated_at = now if is_a?(Updated) && !updated_at_changed? self.created_at = now end clear_timeless_option end |