-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathd8_cache.routing.yml
More file actions
55 lines (49 loc) · 1.54 KB
/
d8_cache.routing.yml
File metadata and controls
55 lines (49 loc) · 1.54 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
51
52
53
54
55
d8_cache.max_age:
path: '/d8_cache/max-age'
defaults:
_controller: '\Drupal\d8_cache\Controller\DefaultController::cacheMaxAge'
_title: 'Cache Max age example'
requirements:
_permission: 'access content'
d8_cache.max_age_permanent:
path: '/d8_cache/max-age-permanent'
defaults:
_controller: '\Drupal\d8_cache\Controller\DefaultController::cacheMaxAgePermanent'
_title: 'Cache Max age example'
requirements:
_permission: 'access content'
d8_cache.contexts_url:
path: '/d8_cache/contexts'
defaults:
_controller: '\Drupal\d8_cache\Controller\DefaultController::cacheContextsByUrl'
_title: 'Cache Contexts'
requirements:
_permission: 'access content'
d8_cache.contexts_url_param:
path: '/d8_cache/contexts-param'
defaults:
_controller: '\Drupal\d8_cache\Controller\DefaultController::cacheContextsByUrl'
_title: 'Cache Contexts'
requirements:
_permission: 'access content'
d8_cache.tags:
path: '/d8_cache/tags'
defaults:
_controller: '\Drupal\d8_cache\Controller\DefaultController::cacheTags'
_title: 'Cache tags'
requirements:
_permission: 'access content'
d8_cache.tree:
path: '/d8_cache/tree'
defaults:
_controller: '\Drupal\d8_cache\Controller\DefaultController::cacheTree'
_title: 'Cache tree'
requirements:
_permission: 'access content'
d8_cache.tree_keys:
path: '/d8_cache/tree-keys'
defaults:
_controller: '\Drupal\d8_cache\Controller\DefaultController::cacheTreeKeys'
_title: 'Cache tree keys'
requirements:
_permission: 'access content'