File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cldt/laravel-aircall" ,
3
- "version" : " 1.1.2 " ,
3
+ "version" : " 1.1.3 " ,
4
4
"description" : " API Wrapper for the Aircall API" ,
5
5
"keywords" : [
6
6
" cldt" ,
Original file line number Diff line number Diff line change 3
3
namespace CLDT \Aircall \Http \Controllers ;
4
4
5
5
use CLDT \Aircall \AircallWebhookSignatureValidator ;
6
+ use CLDT \Aircall \Jobs \ProcessAircallWebhookJob ;
6
7
use Illuminate \Http \Request ;
7
-
8
8
use Spatie \WebhookClient \Exceptions \InvalidConfig ;
9
9
use Spatie \WebhookClient \Exceptions \InvalidWebhookSignature ;
10
10
use Spatie \WebhookClient \WebhookConfig ;
@@ -26,7 +26,7 @@ public function __invoke(Request $request)
26
26
'signature_validator ' => AircallWebhookSignatureValidator::class,
27
27
'webhook_profile ' => ProcessEverythingWebhookProfile::class,
28
28
'webhook_model ' => config ('aircall.webhook_model ' ),
29
- 'process_webhook_job ' => config ( ' aircall.webhook_jobs ' ) ,
29
+ 'process_webhook_job ' => ProcessAircallWebhookJob::class ,
30
30
'store_headers ' => [],
31
31
]);
32
32
You can’t perform that action at this time.
0 commit comments