Compare commits

...

2 commits

Author SHA1 Message Date
uwaa
4f3229e436 pleroma: add Account.CreatedAt 2025-01-16 18:38:50 +00:00
uwaa
b5dc8d2f8c pleroma: rename Public to All 2025-01-16 18:38:35 +00:00
3 changed files with 5 additions and 2 deletions

View file

@ -5,6 +5,9 @@ public class Account : ASObject
[JsonPropertyName("bot")]
public bool Bot { get; set; }
[JsonPropertyName("created_at")]
public DateTimeOffset CreatedAt { get; set; }
[JsonPropertyName("display_name")]
public string DisplayName { get; set; } = null!;

View file

@ -523,7 +523,7 @@ public class Pleroma
case Timeline.Bubble:
timelineName = "bubble";
break;
case Timeline.Public:
case Timeline.All:
timelineName = "public";
break;

View file

@ -28,5 +28,5 @@ public enum Timeline
/// <summary>
/// All statuses visible to the instance.
/// </summary>
Public,
All,
}