Sha256: 9d8140d77651eebb246f629599631078efbdad7ca51524afbd131d2bcf65493b
Contents?: true
Size: 1.06 KB
Versions: 13
Compression:
Stored size: 1.06 KB
Contents
module Alchemy module Touching # Touches the timestamps and userstamps # def touch # Using update here, because we want the touch call to bubble up to the page. update(touchable_attributes) end private # If the model has a +contents+ association, # it updates all their timestamps. # # CAUTION: Only use on bottom to top releations, # e.g. +Alchemy::Picture+ or +Alchemy::Attachment+ # not on top to bottom ones like +Alchemy::Element+. # def touch_contents return unless respond_to?(:contents) contents.update_all(touchable_attributes) end # If the model has a +touchable_pages+ association, # it updates all their timestamps. # # Used by +Alchemy::Element+ # def touch_pages return unless respond_to?(:touchable_pages) touchable_pages.update_all(touchable_attributes) end # Returns the attributes hash for touching a model. # def touchable_attributes {updated_at: Time.current, updater_id: Alchemy.user_class.try(:stamper)} end end end
Version data entries
13 entries across 13 versions & 1 rubygems