You are here

purge_queuer_url.schema.yml in URLs queuer 8

config/schema/purge_queuer_url.schema.yml

File

config/schema/purge_queuer_url.schema.yml
View source
  1. # Schema for the configuration files of the purge_queuer_url module.
  2. purge_queuer_url.settings:
  3. type: config_object
  4. label: 'purge_queuer_url settings.'
  5. mapping:
  6. queue_paths:
  7. type: boolean
  8. label: 'Whether to queue paths (true) instead of URLs or not (false).'
  9. translatable: false
  10. host_override:
  11. type: boolean
  12. label: 'Whether to override the hostname (true) or keep as is (false).'
  13. translatable: false
  14. host:
  15. type: string
  16. label: 'The hostname to set with when host_override is true.'
  17. translatable: false
  18. scheme_override:
  19. type: boolean
  20. label: 'Whether to override the scheme (true) or keep as is (false).'
  21. translatable: false
  22. scheme:
  23. type: string
  24. label: 'The scheme to set with when scheme_override is true, e.g. "http".'
  25. translatable: false
  26. blacklist:
  27. label: 'A list of string patterns that will not get queued.'
  28. type: sequence
  29. translatable: false
  30. sequence:
  31. type: string
  32. label: 'String that cannot be present in a fully qualified URL.'
  33. translatable: false