You are here

function farm_update_farm_update_exclude_config in farmOS 2.x

Implements hook_farm_update_exclude_config().

File

modules/core/update/farm_update.module, line 18
Hooks and customizations for the farm_update module.

Code

function farm_update_farm_update_exclude_config() {

  // Exclude Drupal core configurations from automatic updates.
  return [
    'user.role.anonymous',
    'user.role.authenticated',
  ];
}