Skip to content

Commit

Permalink
Merge pull request #427 from paulverdu/fix-caching-issue
Browse files Browse the repository at this point in the history
Configuration of ImportDefinition is returned when getting ExportDefinition by ID
  • Loading branch information
dpfaffenbauer authored Oct 28, 2024
2 parents 0a05d24 + 36290c4 commit 7854cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function configure(): void

parent::configure([
'containerConfig' => $definitions,
'settingsStoreScope' => 'data_definitions',
'settingsStoreScope' => 'data_definitions.' . self::CONFIG_KEY,
'storageConfig' => $storageConfig,
]);
}
Expand Down
2 changes: 1 addition & 1 deletion src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function configure(): void

parent::configure([
'containerConfig' => $definitions,
'settingsStoreScope' => 'data_definitions',
'settingsStoreScope' => 'data_definitions.' . self::CONFIG_KEY,
'storageConfig' => $storageConfig,
]);
}
Expand Down

0 comments on commit 7854cba

Please sign in to comment.