Sha256: 94f66d4afee5ed299662a01031801f75ece31a00da54bbc7d863749f4792c74a

Contents?: true

Size: 749 Bytes

Versions: 4

Compression:

Stored size: 749 Bytes

Contents

# frozen_string_literal: true

require "global_registry_bindings/workers/delete_entity_worker"

module GlobalRegistry # :nodoc:
  module Bindings # :nodoc:
    module Model # :nodoc:
      module DeleteEntity
        extend ActiveSupport::Concern

        included do
          after_commit :delete_entity_from_global_registry_async, on: :destroy
        end

        def delete_entity_from_global_registry_async
          return unless global_registry_entity.id_value?
          return if global_registry_entity.condition?(:if)
          return unless global_registry_entity.condition?(:unless)
          ::GlobalRegistry::Bindings::Workers::DeleteEntityWorker.perform_async(global_registry_entity.id_value)
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
global-registry-bindings-0.7.2 lib/global_registry_bindings/model/delete_entity.rb
global-registry-bindings-0.7.1 lib/global_registry_bindings/model/delete_entity.rb
global-registry-bindings-0.7 lib/global_registry_bindings/model/delete_entity.rb
global-registry-bindings-0.6.3 lib/global_registry_bindings/model/delete_entity.rb