16 lines
320 B
Text
16 lines
320 B
Text
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Updates for the rollbar module.
|
|
*/
|
|
|
|
/**
|
|
* Updates the rollbar configuration.
|
|
*/
|
|
function rollbar_update_8001(&$sandbox) {
|
|
$config_factory = \Drupal::configFactory();
|
|
$config = $config_factory->getEditable('rollbar.settings');
|
|
$config->set('host_white_list', '');
|
|
$config->save(TRUE);
|
|
}
|