You are here

action.schema.yml in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/action/config/schema/action.schema.yml
core/modules/action/config/schema/action.schema.yml

File

core/modules/action/config/schema/action.schema.yml
View source
  1. # Schema for the configuration files of the Action module.
  2. action.settings:
  3. type: config_object
  4. label: 'Action settings'
  5. mapping:
  6. recursion_limit:
  7. type: integer
  8. label: 'Recursion limit for actions'
  9. action.configuration.action_send_email_action:
  10. type: mapping
  11. label: 'Send email configuration'
  12. mapping:
  13. recipient:
  14. type: string
  15. label: 'Recipient'
  16. subject:
  17. type: label
  18. label: 'Subject'
  19. message:
  20. type: text
  21. label: 'Message'
  22. action.configuration.action_goto_action:
  23. type: mapping
  24. label: 'Redirect to URL configuration'
  25. mapping:
  26. url:
  27. type: string
  28. label: 'URL'
  29. action.configuration.action_message_action:
  30. type: mapping
  31. label: 'Display a message to the user configuration'
  32. mapping:
  33. message:
  34. type: text
  35. label: 'Message'