You are here

function system_post_update_delete_authorize_settings in Drupal 9

Remove obsolete system.authorize configuration.

File

core/modules/system/system.post_update.php, line 204
Post update functions for System.

Code

function system_post_update_delete_authorize_settings() {
  \Drupal::configFactory()
    ->getEditable('system.authorize')
    ->delete();
}