Add favicon to jsonfeed

This commit is contained in:
Laura Hausmann 2022-11-26 18:21:18 +01:00
parent bf447c84c2
commit 64fc0a8955
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -28,8 +28,7 @@ public class JsonFeed : Controller {
[J("description")] public string Description => "Blog of a disabled neurodivergent queer person unhappy with the state of the world";
[J("home_page_url")] public string HomeUrl => "https://zotan.pw/blog";
[J("feed_url")] public string FeedUrl => "https://zotan.pw/blog/feed.json";
// TODO: favicon/icon
[J("favicon")] public string Favicon => "https://zotan.pw/favicon.ico";
[J("items")] public List<JsonFeedItem> Items { get; init; } = new();
}