feat: share latest activity

This commit is contained in:
benonymity 2022-07-06 16:55:58 -04:00
parent 06ec2159f5
commit 1022033e0f
6 changed files with 199 additions and 1 deletions

View file

@ -209,6 +209,7 @@ class ApiRouter {
this.router.get('/search/podcast', MiscController.findPodcasts.bind(this))
this.router.get('/search/authors', MiscController.findAuthor.bind(this))
this.router.get('/search/chapters', MiscController.findChapters.bind(this))
this.router.get('/social', MiscController.getSocialStats.bind(this))
this.router.get('/tags', MiscController.getAllTags.bind(this))
}