From e2dcdd28661caaae743b12c0c9e199f328b50ad6 Mon Sep 17 00:00:00 2001 From: Myles Braithwaite Date: Wed, 31 May 2017 15:40:59 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=96=20Adapters:=20Pointing=20to=20the?= =?UTF-8?q?=20correct=20location=20(#8507)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit no issue --- content/adapters/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/adapters/README.md b/content/adapters/README.md index 441cdb5ba9..56b6bff8df 100644 --- a/content/adapters/README.md +++ b/content/adapters/README.md @@ -7,12 +7,12 @@ The default behaviour in Ghost is as following: ### LocalFileStorage By default Ghost will upload your images to the `content/images` folder. The LocalFileStorage is using the file system to read or write images. -This default adapter can be found in `core/server/storage/LocalFileStorage.js`. +This default adapter can be found in `core/server/adapters/storage/LocalFileStorage.js`. ### SchedulingDefault By default Ghost will schedule your posts using a pure JavaScript solution. It doesn't use `cron` or similar. -This default adapter can be found in `core/server/scheduling/SchedulingDefault.js`. +This default adapter can be found in `core/server/adapters/scheduling/SchedulingDefault.js`. ### Custom Adapter To override any of the default adapters, you have to add a folder (`content/adapters/storage` or `content/adapters/scheduling`) and copy your adapter to it.