You are here

function commerce_log_post_update_3 in Commerce Core 8.2

Revert the Activity view to allow admin comments.

File

modules/log/commerce_log.post_update.php, line 39
Post update functions for Log.

Code

function commerce_log_post_update_3() {

  /** @var \Drupal\commerce\Config\ConfigUpdaterInterface $config_updater */
  $config_updater = \Drupal::service('commerce.config_updater');
  $result = $config_updater
    ->revert([
    'views.view.commerce_activity',
  ], FALSE);
  return implode('<br>', $result
    ->getFailed());
}