automatic_updates.update_readiness:
  path: '/admin/automatic_updates/readiness'
  defaults:
    _controller: '\Drupal\automatic_updates\Controller\ReadinessCheckerController::run'
    _title: 'Update readiness checking'
  requirements:
    _permission: 'administer software updates'
  options:
    _maintenance_access: TRUE
    _automatic_updates_readiness_messages: skip
automatic_updates.confirmation_page:
  path: '/admin/automatic-update-ready/{stage_id}'
  defaults:
    _form: '\Drupal\automatic_updates\Form\UpdateReady'
    _title: 'Ready to update'
  requirements:
    _permission: 'administer software updates'
  options:
    _maintenance_access: TRUE
    _automatic_updates_readiness_messages: skip
automatic_updates.finish:
  path: '/automatic-update/finish'
  defaults:
    _controller: '\Drupal\automatic_updates\Controller\UpdateController::onFinish'
  requirements:
    _permission: 'administer software updates'
  options:
    _maintenance_access: TRUE
    _automatic_updates_readiness_messages: skip
automatic_updates.cron.post_apply:
  path: '/automatic-update/cron/post-apply/{stage_id}/{installed_version}/{target_version}/{key}'
  defaults:
    _controller: 'automatic_updates.cron_updater:handlePostApply'
  requirements:
    _access_system_cron: 'TRUE'
# Links to our updater form appear in three different sets of local tasks. To ensure the breadcrumbs and paths are
# consistent with the other local tasks in each set, we need two separate routes to the same form.
automatic_updates.report_update:
  path: '/admin/reports/updates/automatic-update'
  defaults:
    _form: '\Drupal\automatic_updates\Form\UpdaterForm'
    _title: 'Update'
  requirements:
    _permission: 'administer software updates'
  options:
    _admin_route: TRUE
    _maintenance_access: TRUE
    _automatic_updates_readiness_messages: skip
automatic_updates.module_update:
  path: '/admin/modules/automatic-update'
  defaults:
    _form: '\Drupal\automatic_updates\Form\UpdaterForm'
    _title: 'Update'
  requirements:
    _permission: 'administer software updates'
  options:
    _admin_route: TRUE
    _maintenance_access: TRUE
    _automatic_updates_readiness_messages: skip
automatic_updates.theme_update:
  path: '/admin/theme/automatic-update'
  defaults:
    _form: '\Drupal\automatic_updates\Form\UpdaterForm'
    _title: 'Update'
  requirements:
    _permission: 'administer software updates'
  options:
    _admin_route: TRUE
    _maintenance_access: TRUE
    _automatic_updates_readiness_messages: skip