From 84c406ce36254d639e15cadf901f414e3c13e3d1 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Fri, 30 Nov 2018 00:15:24 -0500 Subject: add ModDrop support in API & update checks (#604) --- src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/SMAPI.Web/Framework/ConfigModels') diff --git a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs index ae8f18d2..c27cadab 100644 --- a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs +++ b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs @@ -44,6 +44,15 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels /// The password with which to authenticate to the GitHub API (if any). public string GitHubPassword { get; set; } + /**** + ** ModDrop + ****/ + /// The base URL for the ModDrop API. + public string ModDropApiUrl { get; set; } + + /// The URL for a ModDrop mod page for the user, where {0} is the mod ID. + public string ModDropModPageUrl { get; set; } + /**** ** Nexus Mods ****/ -- cgit