forked from Nikeev/drupal_sendgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsendgrid.services.yml
More file actions
29 lines (24 loc) · 920 Bytes
/
sendgrid.services.yml
File metadata and controls
29 lines (24 loc) · 920 Bytes
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
services:
sendgrid.service:
class: Drupal\sendgrid\SendgridService
arguments: ['@sendgrid.api', '@config.factory', '@logger.factory']
sendgrid.api:
class: Drupal\sendgrid\SendgridAPI
arguments: ['@config.factory', '@logger.factory']
sendgrid.test.service:
class: Drupal\sendgrid\SendgridTestService
arguments: ['@sendgrid.test.api', '@config.factory', '@logger.factory']
sendgrid.test.api:
class: Drupal\sendgrid\SendgridTestAPI
arguments: ['@config.factory', '@logger.factory']
cache.sendgrid:
class: Drupal\Core\Cache\CacheBackendInterface
tags:
- { name: cache.bin }
factory: cache_factory:get
arguments: ['sendgrid']
access_check.sendgrid.configuration:
class: Drupal\sendgrid\Access\SendgridConfigurationAccessCheck
arguments: ['@current_user']
tags:
- { name: access_check, applies_to: _sendgrid_configuration_access_check }