From 84d52b1735204550c6369270c03f61944c2c88bd Mon Sep 17 00:00:00 2001
From: Jesse Plamondon-Willard <github@jplamondonw.com>
Date: Sun, 29 Jul 2018 12:43:04 -0400
Subject: make beta version on smapi.io optional (#569)

---
 src/SMAPI.Web/Framework/ConfigModels/ContextConfig.cs | 15 ---------------
 src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs    | 18 ++++++++++++++++++
 2 files changed, 18 insertions(+), 15 deletions(-)
 delete mode 100644 src/SMAPI.Web/Framework/ConfigModels/ContextConfig.cs
 create mode 100644 src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs

(limited to 'src/SMAPI.Web/Framework/ConfigModels')

diff --git a/src/SMAPI.Web/Framework/ConfigModels/ContextConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/ContextConfig.cs
deleted file mode 100644
index 117462f4..00000000
--- a/src/SMAPI.Web/Framework/ConfigModels/ContextConfig.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-namespace StardewModdingAPI.Web.Framework.ConfigModels
-{
-    /// <summary>The config settings for the app context.</summary>
-    public class ContextConfig // must be public to pass into views
-    {
-        /*********
-        ** Accessors
-        *********/
-        /// <summary>The root URL for the app.</summary>
-        public string RootUrl { get; set; }
-
-        /// <summary>The root URL for the log parser.</summary>
-        public string LogParserUrl { get; set; }
-    }
-}
diff --git a/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs
new file mode 100644
index 00000000..3d428015
--- /dev/null
+++ b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs
@@ -0,0 +1,18 @@
+namespace StardewModdingAPI.Web.Framework.ConfigModels
+{
+    /// <summary>The site config settings.</summary>
+    public class SiteConfig // must be public to pass into views
+    {
+        /*********
+        ** Accessors
+        *********/
+        /// <summary>The root URL for the app.</summary>
+        public string RootUrl { get; set; }
+
+        /// <summary>The root URL for the log parser.</summary>
+        public string LogParserUrl { get; set; }
+
+        /// <summary>Whether to show SMAPI beta versions on the main page, if any.</summary>
+        public bool EnableSmapiBeta { get; set; }
+    }
+}
-- 
cgit