Skip to content

Commit

Permalink
Add CAPABILITY_HIERARCHICAL_IDENTIFIERS (#38)
Browse files Browse the repository at this point in the history
Fixes #26
  • Loading branch information
tmotyl authored Apr 5, 2023
1 parent 580f742 commit 51d6559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Driver/StorageDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function __construct(array $configuration = [])
{
parent::__construct($configuration);

$this->capabilities = ResourceStorage::CAPABILITY_BROWSABLE | ResourceStorage::CAPABILITY_PUBLIC | ResourceStorage::CAPABILITY_WRITABLE;
$this->capabilities = ResourceStorage::CAPABILITY_BROWSABLE | ResourceStorage::CAPABILITY_PUBLIC | ResourceStorage::CAPABILITY_WRITABLE | ResourceStorage::CAPABILITY_HIERARCHICAL_IDENTIFIERS;
$this->cache = GeneralUtility::makeInstance(CacheManager::class)->getCache('azurestorage');
}

Expand Down

0 comments on commit 51d6559

Please sign in to comment.