Forked from
project / automatic_updates
117 commits behind, 14 commits ahead of the upstream repository.
-
Issue #3326486 by kunal.sachdev, phenaproxima, Wim Leers, tedbow, yash.rode: Rename Stage to StageBase to clarify its relationship to its subclasses, and add "Stage" suffix to the Updater classes
Issue #3326486 by kunal.sachdev, phenaproxima, Wim Leers, tedbow, yash.rode: Rename Stage to StageBase to clarify its relationship to its subclasses, and add "Stage" suffix to the Updater classes
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
automatic_updates.routing.yml 1.23 KiB
automatic_updates.status_check:
path: '/admin/automatic_updates/status'
defaults:
_controller: '\Drupal\automatic_updates\Controller\StatusCheckController::run'
_title: 'Update readiness checking'
requirements:
_permission: 'administer software updates'
options:
_maintenance_access: TRUE
_automatic_updates_status_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_status_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_status_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_update_stage:handlePostApply'
requirements:
_access_system_cron: 'TRUE'