Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update the bskyweb routes (#468)

authored by

Paul Frazee and committed by
GitHub
5caa6a5e 8aabc70f

+4 -2
+4 -2
bskyweb/cmd/bskyweb/server.go
··· 96 96 e.GET("/sys/log", server.WebGeneric) 97 97 e.GET("/support", server.WebGeneric) 98 98 e.GET("/support/privacy", server.WebGeneric) 99 + e.GET("/support/tos", server.WebGeneric) 100 + e.GET("/support/community-guidelines", server.WebGeneric) 101 + e.GET("/support/copyright", server.WebGeneric) 99 102 100 103 // profile endpoints; only first populates info 101 104 e.GET("/profile/:handle", server.WebProfile) ··· 104 107 105 108 // post endpoints; only first populates info 106 109 e.GET("/profile/:handle/post/:rkey", server.WebPost) 107 - e.GET("/profile/:handle/post/:rkey/upvoted-by", server.WebGeneric) 108 - e.GET("/profile/:handle/post/:rkey/downvoted-by", server.WebGeneric) 110 + e.GET("/profile/:handle/post/:rkey/liked-by", server.WebGeneric) 109 111 e.GET("/profile/:handle/post/:rkey/reposted-by", server.WebGeneric) 110 112 111 113 // Mailmodo