Sha256: bd2752afce80842b48e0af0911e2b3c68a98275853e6df3b3a1bbda9b680809b
Contents?: true
Size: 889 Bytes
Versions: 45
Compression:
Stored size: 889 Bytes
Contents
module ApiResource module Callbacks extend ActiveSupport::Concern included do extend ActiveModel::Callbacks define_model_callbacks :save, :create, :update, :destroy [:save, :create, :update, :destroy].each do |action| alias_method_chain action, :callbacks end end def save_with_callbacks(*args) run_callbacks :save do save_without_callbacks(*args) end end def create_with_callbacks(*args) run_callbacks :create do create_without_callbacks(*args) end end def update_with_callbacks(*args) run_callbacks :update do update_without_callbacks(*args) end end def destroy_with_callbacks(*args) run_callbacks :destroy do destroy_without_callbacks(*args) end end end end
Version data entries
45 entries across 45 versions & 1 rubygems