You are here

function acquia_contenthub_update_8303 in Acquia Content Hub 8

Remove shared_secret config variable.

File

./acquia_contenthub.install, line 219
Install, update and uninstall functions for the acquia_contenthub module.

Code

function acquia_contenthub_update_8303() {
  $config = \Drupal::configFactory()
    ->getEditable('acquia_contenthub.admin_settings');
  $config
    ->clear('shared_secret')
    ->save();
}