diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-08-05 23:30:11 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 19:05:45 -0400 |
commit | 3331beb17a7bda439b281e7507ae187c68b6359c (patch) | |
tree | ed6a231f79871bfd1a94d1025cd0388857851b5c /src/SMAPI.Web/Controllers/JsonValidatorController.cs | |
parent | 39d58a68ab06328cbf7086900ac8c4f2c91db360 (diff) | |
download | SMAPI-3331beb17a7bda439b281e7507ae187c68b6359c.tar.gz SMAPI-3331beb17a7bda439b281e7507ae187c68b6359c.tar.bz2 SMAPI-3331beb17a7bda439b281e7507ae187c68b6359c.zip |
integrate Content Patcher schema into validator, update docs (#654)
Diffstat (limited to 'src/SMAPI.Web/Controllers/JsonValidatorController.cs')
-rw-r--r-- | src/SMAPI.Web/Controllers/JsonValidatorController.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Controllers/JsonValidatorController.cs b/src/SMAPI.Web/Controllers/JsonValidatorController.cs index 41c07cee..9ded9c0d 100644 --- a/src/SMAPI.Web/Controllers/JsonValidatorController.cs +++ b/src/SMAPI.Web/Controllers/JsonValidatorController.cs @@ -39,7 +39,8 @@ namespace StardewModdingAPI.Web.Controllers private readonly IDictionary<string, string> SchemaFormats = new Dictionary<string, string> { ["none"] = "None", - ["manifest"] = "Manifest" + ["manifest"] = "Manifest", + ["content-patcher"] = "Content Patcher" }; /// <summary>The schema ID to use if none was specified.</summary> |