-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebhook_receiver.services.yml
More file actions
50 lines (50 loc) · 1.56 KB
/
webhook_receiver.services.yml
File metadata and controls
50 lines (50 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
services:
webhook_receiver.security:
class: >-
Drupal\webhook_receiver\WebhookReceiverSecurity\WebhookReceiverSecurity
arguments:
- '@state'
- '@uuid'
webhook_receiver.activity_logger:
class: >-
Drupal\webhook_receiver\WebhookReceiverActivityLog\WebhookReceiverActivityLog
arguments:
- '@logger.factory'
- '@uuid'
webhook_receiver.array_pathfinder:
class: >-
Drupal\webhook_receiver\ArrayPathfinder\ArrayPathfinder
webhook_receiver.payload_factory:
class: >-
Drupal\webhook_receiver\Payload\PayloadFactory
arguments:
- '@webhook_receiver.array_pathfinder'
webhook_receiver.request_response_test:
class: >-
Drupal\webhook_receiver\SelfTest\RequestResponseTest
arguments:
- '@file_system'
- '@webhook_receiver'
- '@extension.list.module'
- '@webhook_receiver.payload_factory'
webhook_receiver.processor:
class: >-
Drupal\webhook_receiver\Processor\Processor
arguments:
- '@webhook_receiver.activity_logger'
- '@datetime.time'
webhook_receiver.requirements:
class: >-
Drupal\webhook_receiver\WebhookReceiverRequirements\WebhookReceiverRequirements
arguments:
- '@webhook_receiver'
webhook_receiver:
class: Drupal\webhook_receiver\WebhookReceiver
arguments:
- '@webhook_receiver.security'
- '@webhook_receiver.processor'
- '@webhook_receiver.activity_logger'
plugin.manager.webhook_receiver:
class: Drupal\webhook_receiver\WebhookReceiverPluginManager
parent: default_plugin_manager