ssg: StaticSiteConfig: fix config keys

This commit is contained in:
Nick Vella 2019-07-06 22:05:17 +10:00
parent a91bb7c27b
commit 65819885ab
1 changed files with 4 additions and 4 deletions

View File

@ -10,10 +10,10 @@ namespace OpenLiveWriter.BlogClient.Clients
{ {
// The credential keys where the configuration is stored. // The credential keys where the configuration is stored.
private const string CONFIG_POSTS_PATH = "SSGPostsPath"; private const string CONFIG_POSTS_PATH = "SSGPostsPath";
private const string CONFIG_PAGES_ENABLED = "SSGPagesPath"; private const string CONFIG_PAGES_ENABLED = "SSGPagesEnabled";
private const string CONFIG_PAGES_PATH = "SSGPagesEnabled"; private const string CONFIG_PAGES_PATH = "SSGPagesPath";
private const string CONFIG_DRAFTS_PATH = "SSGDraftsEnabled"; private const string CONFIG_DRAFTS_ENABLED = "SSGDraftsEnabled";
private const string CONFIG_DRAFTS_ENABLED = "SSGDraftsPath"; private const string CONFIG_DRAFTS_PATH = "SSGDraftsPath";
private const string CONFIG_IMAGES_ENABLED = "SSGImagesEnabled"; private const string CONFIG_IMAGES_ENABLED = "SSGImagesEnabled";
private const string CONFIG_IMAGES_PATH = "SSGImagesPath"; private const string CONFIG_IMAGES_PATH = "SSGImagesPath";
private const string CONFIG_BUILD_COMMAND = "SSGBuildCommand"; private const string CONFIG_BUILD_COMMAND = "SSGBuildCommand";