|
388 | 388 | /*
|
389 | 389 | [
|
390 | 390 | 'topic' => env('SHOPIFY_WEBHOOK_1_TOPIC', 'ORDERS_CREATE'),
|
391 |
| - 'address' => env('SHOPIFY_WEBHOOK_1_ADDRESS', 'https://some-app.com/webhook/orders-create') |
| 391 | + 'address' => env('SHOPIFY_WEBHOOK_1_ADDRESS', 'https://example.com/webhook/orders-create') |
392 | 392 | ], [
|
393 | 393 | 'topic' => env('SHOPIFY_WEBHOOK_2_TOPIC', 'APP_PURCHASES_ONE_TIME_UPDATE'),
|
394 |
| - 'address' => env('SHOPIFY_WEBHOOK_2_ADDRESS', 'https://some-app.com/webhook/purchase'), |
| 394 | + 'address' => env('SHOPIFY_WEBHOOK_2_ADDRESS', 'https://example.com/webhook/purchase'), |
395 | 395 | ]
|
396 | 396 | // In certain situations you may wish to map the webhook to a specific class
|
397 | 397 | // To do this, change the array to an associative array with a 'class' key
|
398 | 398 | 'orders-create' => [
|
399 | 399 | 'topic' => env('SHOPIFY_WEBHOOK_3_TOPIC', 'ORDERS_PAID'),
|
400 |
| - 'address' => env('SHOPIFY_WEBHOOK_3_ADDRESS', 'https://some-app.com/webhook/orders-create'), |
| 400 | + 'address' => env('SHOPIFY_WEBHOOK_3_ADDRESS', 'https://example.com/webhook/orders-create'), |
401 | 401 | 'class' => \App\Shopify\Actions\ExampleAppJob::class
|
402 | 402 | ],
|
403 | 403 | */],
|
|
414 | 414 | 'scripttags' => [
|
415 | 415 | /*
|
416 | 416 | [
|
417 |
| - 'src' => env('SHOPIFY_SCRIPTTAG_1_SRC', 'https://some-app.com/some-controller/js-method-response'), |
| 417 | + 'src' => env('SHOPIFY_SCRIPTTAG_1_SRC', 'https://example.com/some-controller/js-method-response'), |
418 | 418 | 'event' => env('SHOPIFY_SCRIPTTAG_1_EVENT', 'onload'),
|
419 | 419 | 'display_scope' => env('SHOPIFY_SCRIPTTAG_1_DISPLAY_SCOPE', 'online_store')
|
420 | 420 | ],
|
|
0 commit comments