Sha256: ad2dcd391aaea00cda258929271baaf364a0c9910ebd5e287cb23c16a02efe11
Contents?: true
Size: 659 Bytes
Versions: 171
Compression:
Stored size: 659 Bytes
Contents
# encoding: utf-8 module Mongoid #:nodoc: module Timestamps # This module handles the behaviour for setting up document created at # timestamp. module Created extend ActiveSupport::Concern included do field :created_at, :type => Time set_callback :create, :before, :set_created_at, :if => :timestamping? end # Update the created_at field on the Document to the current time. This is # only called on create. # # @example Set the created at time. # person.set_created_at def set_created_at self.created_at = Time.now.utc if !created_at end end end end
Version data entries
171 entries across 79 versions & 4 rubygems