Document JSON options change

This commit is contained in:
ZadenRB 2020-04-15 17:02:43 -06:00
parent 72862d7b46
commit bb288e16cc
1 changed files with 1 additions and 0 deletions

View File

@ -73,6 +73,7 @@ namespace Jellyfin.Server.Extensions
.AddApplicationPart(typeof(StartupController).Assembly)
.AddJsonOptions(options =>
{
// Setting the naming policy to null leaves the property names as-is when serializing objects to JSON.
options.JsonSerializerOptions.PropertyNamingPolicy = null;
})
.AddControllersAsServices();