basic public RSS feed for profiles (#2229)
* web: initial implementation of profile RSS feed * re-work RSS feed to use DID in URL, not handle Shouldn't have RSS feeds break when folks change handle. * rss: tweak XML
This commit is contained in:
parent
edc6bdb4d6
commit
3e3a72a366
3 changed files with 103 additions and 0 deletions
|
@ -209,6 +209,9 @@ func serve(cctx *cli.Context) error {
|
|||
e.GET("/profile/:handle/feed/:rkey", server.WebGeneric)
|
||||
e.GET("/profile/:handle/feed/:rkey/liked-by", server.WebGeneric)
|
||||
|
||||
// profile RSS feed (DID not handle)
|
||||
e.GET("/profile/:did/rss", server.WebProfileRSS)
|
||||
|
||||
// post endpoints; only first populates info
|
||||
e.GET("/profile/:handle/post/:rkey", server.WebPost)
|
||||
e.GET("/profile/:handle/post/:rkey/liked-by", server.WebGeneric)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue