Fix/in browser postman auth & editor config boolean serialization (#14739)
* Add in-browser postman callback url * Added a jsonconverter for property editor configuration boolean values that are persisted as numbers and serialized as strings... --------- Co-authored-by: Sven Geusens <sge@umbraco.dk>
This commit is contained in:
@@ -27,6 +27,7 @@ public class SystemTextConfigurationEditorJsonSerializer : IConfigurationEditorJ
|
||||
_jsonSerializerOptions.Converters.Add(new JsonObjectConverter());
|
||||
_jsonSerializerOptions.Converters.Add(new JsonUdiConverter());
|
||||
_jsonSerializerOptions.Converters.Add(new JsonGuidUdiConverter());
|
||||
_jsonSerializerOptions.Converters.Add(new JsonBoolConverter());
|
||||
}
|
||||
|
||||
public string Serialize(object? input) => JsonSerializer.Serialize(input, _jsonSerializerOptions);
|
||||
|
||||
Reference in New Issue
Block a user