Iceshrimp.NET/Iceshrimp.Backend/Controllers/Pleroma/Schemas/FrontendConfigurationsResponse.cs
2024-09-13 21:44:31 +02:00

14 lines
No EOL
413 B
C#

using J = System.Text.Json.Serialization.JsonPropertyNameAttribute;
namespace Iceshrimp.Backend.Controllers.Pleroma.Schemas;
public class FrontendConfigurationsResponse
{
[J("pleroma_fe")] public PleromaFeConfiguration PleromaFe => new();
}
public class PleromaFeConfiguration
{
[J("loginMethod")] public string LoginMethod => "token";
[J("useStreamingApi")] public bool UseStreamingApi => true;
}