You are here

automatic_updates.routing.yml in Automatic Updates 8.2

Same filename and directory in other branches
  1. 8 automatic_updates.routing.yml

File

automatic_updates.routing.yml
View source
  1. automatic_updates.update_readiness:
  2. path: '/admin/automatic_updates/readiness'
  3. defaults:
  4. _controller: '\Drupal\automatic_updates\Controller\ReadinessCheckerController::run'
  5. _title: 'Update readiness checking'
  6. requirements:
  7. _permission: 'administer software updates'
  8. automatic_updates.confirmation_page:
  9. path: '/admin/automatic-update-ready'
  10. defaults:
  11. _form: '\Drupal\automatic_updates\Form\UpdateReady'
  12. _title: 'Ready to update'
  13. requirements:
  14. _permission: 'administer software updates'
  15. _access_update_manager: 'TRUE'
  16. # Links to our updater form appear in two different sets of local tasks. To ensure the breadcrumbs and paths are
  17. # consistent with the other local tasks in each set, we need two separate routes to the same form.
  18. automatic_updates.report_update:
  19. path: '/admin/reports/updates/automatic-update'
  20. defaults:
  21. _form: '\Drupal\automatic_updates\Form\UpdaterForm'
  22. _title: 'Update'
  23. requirements:
  24. _permission: 'administer software updates'
  25. options:
  26. _admin_route: TRUE
  27. automatic_updates.module_update:
  28. path: '/admin/modules/automatic-update'
  29. defaults:
  30. _form: '\Drupal\automatic_updates\Form\UpdaterForm'
  31. _title: 'Update'
  32. requirements:
  33. _permission: 'administer software updates'
  34. options:
  35. _admin_route: TRUE
  36. automatic_updates.theme_update:
  37. path: '/admin/theme/automatic-update'
  38. defaults:
  39. _form: '\Drupal\automatic_updates\Form\UpdaterForm'
  40. _title: 'Update'
  41. requirements:
  42. _permission: 'administer software updates'
  43. options:
  44. _admin_route: TRUE