Fixed message about user groups not being cached

This commit is contained in:
Matias Griese
2021-12-15 12:48:02 +02:00
parent fae431bc39
commit def62ec2a2
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ class UserGroupCollection extends FlexCollection
public static function getCachedMethods(): array
{
return [
'authorize' => 'session',
'authorize' => false,
] + parent::getCachedMethods();
}

View File

@@ -37,7 +37,7 @@ class UserGroupObject extends FlexObject implements UserGroupInterface
public static function getCachedMethods(): array
{
return [
'authorize' => 'session',
'authorize' => false,
] + parent::getCachedMethods();
}