This commit is contained in:
philipp 2023-05-24 09:21:22 +02:00
parent 33aeb28140
commit 26f1ad785e

View File

@ -37,9 +37,9 @@ LIMIT 1000
<title>Ruder App Admin Feed</title>
<description>An RSS feed with activities from app.rudernlinz.at</description>");
for log in Self::last(db).await {
ret.push_str("<item>");
ret.push_str("<item><title>");
ret.push_str(&format!("({}) {}", log.created_at, log.msg));
ret.push_str("</item>");
ret.push_str("</title></item>");
}
ret.push_str("</channel>");
ret.push_str("</rss>");