fix: follow data
This commit is contained in:
parent
23ea674eea
commit
0fd62529cf
2 changed files with 10 additions and 1 deletions
|
@ -8,6 +8,13 @@ module.exports = async function () {
|
||||||
const entries = feed.getEntries()
|
const entries = feed.getEntries()
|
||||||
const res = await entries
|
const res = await entries
|
||||||
const activity = { posts: [] }
|
const activity = { posts: [] }
|
||||||
res.forEach((entry) => activity.posts.push({ title: entry.title, url: entry.url }))
|
res.forEach((entry) =>
|
||||||
|
activity.posts.push({
|
||||||
|
id: entry.url,
|
||||||
|
title: entry.title,
|
||||||
|
url: entry.url,
|
||||||
|
date_published: entry.published,
|
||||||
|
})
|
||||||
|
)
|
||||||
return activity
|
return activity
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,8 +10,10 @@ permalink: '/follow.json'
|
||||||
"feed_url": "https://coryd.dev/follow.json",
|
"feed_url": "https://coryd.dev/follow.json",
|
||||||
"items": [{% for item in posts %}
|
"items": [{% for item in posts %}
|
||||||
{
|
{
|
||||||
|
"id": "{{ item.id }}",
|
||||||
"title": "{{ item.title }}",
|
"title": "{{ item.title }}",
|
||||||
"url": "{{ item.url }}"
|
"url": "{{ item.url }}"
|
||||||
|
"date_published": {{ item.date_published }}
|
||||||
}{% if not forloop.last %},{% endif %}
|
}{% if not forloop.last %},{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
]
|
]
|
||||||
|
|
Reference in a new issue