From e2fc0056fb5143d6a54edaf80114256073c9c579 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Mon, 7 Aug 2023 14:41:19 +1200 Subject: [PATCH] DOC Use correct class for keep_archived_assets config --- en/02_Developer_Guides/14_Files/04_File_Storage.md | 2 +- en/02_Developer_Guides/14_Files/05_File_Migration.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/en/02_Developer_Guides/14_Files/04_File_Storage.md b/en/02_Developer_Guides/14_Files/04_File_Storage.md index 8d2f738ea..200e83801 100644 --- a/en/02_Developer_Guides/14_Files/04_File_Storage.md +++ b/en/02_Developer_Guides/14_Files/04_File_Storage.md @@ -149,7 +149,7 @@ Changes are only tracked for file metadata (e.g. the `Title` attribute). You can opt-in to retaining the file content for replaced or removed files. ```yml -SilverStripe\Assets\Flysystem\FlysystemAssetStore: +SilverStripe\Assets\File: keep_archived_assets: true ``` diff --git a/en/02_Developer_Guides/14_Files/05_File_Migration.md b/en/02_Developer_Guides/14_Files/05_File_Migration.md index 57da2bb05..19e092b77 100644 --- a/en/02_Developer_Guides/14_Files/05_File_Migration.md +++ b/en/02_Developer_Guides/14_Files/05_File_Migration.md @@ -152,7 +152,7 @@ in order to avoid bloat. If you need to retain file contents (e.g. for auditing you can opt-in to this behaviour: ```yaml -SilverStripe\Assets\Flysystem\FlysystemAssetStore: +SilverStripe\Assets\File: keep_archived_assets: true ```