a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at dev 13 lines 359 B view raw
1using System.Text.Json; 2using System.Text.Json.Serialization; 3 4namespace Iceshrimp.Shared.Configuration; 5 6public static class JsonSerialization 7{ 8 public static readonly JsonSerializerOptions Options = new() 9 { 10 PropertyNamingPolicy = JsonNamingPolicy.CamelCase, 11 Converters = { new JsonStringEnumConverter(JsonNamingPolicy.SnakeCaseLower) } 12 }; 13}