Add rollbar module
This commit is contained in:
parent
168fab9955
commit
51eb917570
17 changed files with 1068 additions and 1 deletions
16
web/modules/contrib/rollbar/rollbar.install
Normal file
16
web/modules/contrib/rollbar/rollbar.install
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue