Improve rss feed
Closed this issue ยท 4 comments
veelenga commented
Would be nice to display additional information in rss entry description:
- announcement tag
- announcement author
- submit time in words
janczer commented
Hi, I would like work on this issue.
I understand that announcement author I can get from announcement.user
.
How can I get tag?
And what's mean 'time in words'?
Thank you
veelenga commented
Great ๐
announcement.typename
announcement.user.login
time_ago_in_words(announcement.created_at.not_nil!)
You may find an example in announcement view.
janczer commented
Users login, type and time in words should be formated on some way?
Maybe something like this:
<description>User: TestLogin (Project update) - 34 minutes ago <p>desc</p></description>
veelenga commented
@janczer would be really nice to to have those new attributes below the description (just like in the original html view). So maybe something like this:
<description>
desc...
<hr>
<small>Project update.</small>
<small>Announced 34 minutes ago by TestLogin</small>
</description>
Also please link TestLogin
to user's github profile.
Thanks a lot!