diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-08-26 12:25:25 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-08-26 12:25:25 -0400 |
commit | da29f3f08f2192cdce2d3a9ed3c55680421e0caf (patch) | |
tree | dea9bf89cf4e12322960b5efa8dfc9598d51a235 /src/SMAPI.Web/Framework | |
parent | fb3b7aefa79ed9edeee85cf64004e928d203de81 (diff) | |
download | SMAPI-da29f3f08f2192cdce2d3a9ed3c55680421e0caf.tar.gz SMAPI-da29f3f08f2192cdce2d3a9ed3c55680421e0caf.tar.bz2 SMAPI-da29f3f08f2192cdce2d3a9ed3c55680421e0caf.zip |
make beta download blurb configurable (#585)
Diffstat (limited to 'src/SMAPI.Web/Framework')
-rw-r--r-- | src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs index 3d428015..c0e4c4c8 100644 --- a/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs +++ b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs @@ -13,6 +13,9 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels public string LogParserUrl { get; set; } /// <summary>Whether to show SMAPI beta versions on the main page, if any.</summary> - public bool EnableSmapiBeta { get; set; } + public bool BetaEnabled { get; set; } + + /// <summary>A short sentence shown under the beta download button, if any.</summary> + public string BetaBlurb { get; set; } } } |