fix portal role clear cache

This commit is contained in:
Yuri Kuznetsov
2020-09-28 12:36:09 +03:00
parent ae343cddbe
commit d51bbfdfab
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ class Portal extends Record implements
protected function clearRolesCache()
{
$this->fileManager->removeInDir('data/cache/application/acl-portal');
$this->fileManager->removeInDir('data/cache/application/aclPortal');
$this->dataManager->updateCacheTimestamp();
}
}
+1 -1
View File
@@ -57,7 +57,7 @@ class PortalRole extends Record implements
protected function clearRolesCache()
{
$this->fileManager->removeInDir('data/cache/application/acl-portal');
$this->fileManager->removeInDir('data/cache/application/aclPortal');
$this->dataManager->updateCacheTimestamp();
}
}
+1 -1
View File
@@ -675,7 +675,7 @@ class User extends Record implements
protected function clearPortalRolesCache()
{
$this->fileManager->removeInDir('data/cache/application/acl-portal');
$this->fileManager->removeInDir('data/cache/application/aclPortal');
$this->dataManager->updateCacheTimestamp();
}