Add rollbar module

This commit is contained in:
Oliver Davies 2021-04-14 14:39:04 +01:00
parent 168fab9955
commit 51eb917570
17 changed files with 1068 additions and 1 deletions

View file

@ -0,0 +1,16 @@
<?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);
}