Class: ShopifyApp::ScripttagsManagerJob

Inherits:
ActiveJob::Base
  • Object
show all
Defined in:
lib/shopify_app/scripttags_manager_job.rb

Instance Method Summary collapse

Instance Method Details

#perform(shop_domain:, shop_token:, scripttags:) ⇒ Object



3
4
5
6
7
8
# File 'lib/shopify_app/scripttags_manager_job.rb', line 3

def perform(shop_domain:, shop_token:, scripttags:)
  ShopifyAPI::Session.temp(shop_domain, shop_token) do
    manager = ScripttagsManager.new(scripttags)
    manager.create_scripttags
  end
end