module ForstokTrigger::Export::Trigger

Module Trigger is main module for run perform export trigger

Public Class Methods

perform(listing_id, account_id, channel_id, mode) click to toggle source
# File lib/forstok_trigger/export/trigger.rb, line 8
def self.perform(listing_id, account_id, channel_id, mode)
  ForstokTrigger::Export::Repository::ExportRepository
    .export_insert_pending(
      listing_id,
      account_id,
      channel_id,
      mode
    )
end