Sha256: aa726a15ea2a2f9a67a6bd10db5836081122555753a6bd9131d9976924aa6c29
Contents?: true
Size: 1.1 KB
Versions: 9
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true 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
9 entries across 9 versions & 1 rubygems