You are here

function d8cache_user_update in Drupal 8 Cache Backport 7

Implements hook_user_update().

File

includes/user.inc, line 22
User functions and hooks for the D8 caching system backport.

Code

function d8cache_user_update(&$edit, $account, $category) {
  drupal_invalidate_cache_tags(array(
    'search_index:user',
  ));
}