diff --git a/web/modules/custom/materio_user/src/Plugin/Block/UserBlock.php b/web/modules/custom/materio_user/src/Plugin/Block/UserBlock.php index 5ee87b3a..69ec4b2f 100644 --- a/web/modules/custom/materio_user/src/Plugin/Block/UserBlock.php +++ b/web/modules/custom/materio_user/src/Plugin/Block/UserBlock.php @@ -50,6 +50,11 @@ class UserBlock extends BlockBase implements ContainerFactoryPluginInterface{ */ public function build() { $build = []; + + $build['#cache'] = [ + 'max-age' => 0, + ]; + // dpm($this->user); if($this->user->id()){ $user_url = Url::fromRoute('entity.user.canonical', ['user' => $this->user->id()]); @@ -76,6 +81,8 @@ class UserBlock extends BlockBase implements ContainerFactoryPluginInterface{ ) ) ); + + } return $build; }