Method: ShopifyApp::WebhooksManager.queue
- Defined in:
- lib/shopify_app/managers/webhooks_manager.rb
.queue(shop_domain, shop_token, webhooks) ⇒ Object
5 6 7 8 9 10 11 |
# File 'lib/shopify_app/managers/webhooks_manager.rb', line 5 def self.queue(shop_domain, shop_token, webhooks) ShopifyApp::WebhooksManagerJob.perform_later( shop_domain: shop_domain, shop_token: shop_token, webhooks: webhooks ) end |