Skip to content
Snippets Groups Projects

Issue #3100732: Allow specifying `meta` data on JSON:API objects

Closed Björn Brala requested to merge issue/drupal-3100732:3100732-allow-specifying-meta into 10.1.x
2 files
+ 9
8
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 407057a1
    Issue #2820580 by anavarre, hardikpandya, Wim Leers, Berdir, cilefen: Drupal... · 407057a1
    Lee Rowlands authored
    Issue #2820580 by anavarre, hardikpandya, Wim Leers, Berdir, cilefen: Drupal >=8.2.x doesn't allow to override all cache bins with $settings['cache']['default'] anymore, documentation says otherwise
    
    (cherry picked from commit 28aebfd6)
@@ -23,11 +23,11 @@ class CacheFactory implements CacheFactoryInterface, ContainerAwareInterface {
/**
* A map of cache bin to default cache backend service name.
*
* All mappings in $settings takes precedence over this, but this can be used
* to optimize cache storage for a Drupal installation without cache
* customizations in settings.php. For example, this can be used to map the
* 'bootstrap' bin to 'cache.backend.chainedfast', while allowing other bins
* to fall back to the global default of 'cache.backend.database'.
* All bin-specific mappings in $settings take precedence over this, but it
* can be used to optimize cache storage for a Drupal installation without
* cache customizations in settings.php. For example, this can be used to map
* the 'bootstrap' bin to 'cache.backend.chainedfast', while allowing other
* bins to fall back to the global default of 'cache.backend.database'.
*
* @var array
*/
Loading