Class: ShopifyGraphql::GraphqlWebhooksController

Inherits:
ActionController::Base
  • Object
show all
Includes:
WebhookVerification
Defined in:
app/controllers/shopify_graphql/graphql_webhooks_controller.rb

Instance Method Summary collapse

Instance Method Details

#receiveObject



7
8
9
10
11
# File 'app/controllers/shopify_graphql/graphql_webhooks_controller.rb', line 7

def receive
  params.permit!
  webhook_job_klass.perform_later(shop_domain: shop_domain, webhook: webhook_params.to_h)
  head(:ok)
end