This commit is contained in:
Paul DeVito 2026-05-06 13:51:21 +02:00 committed by GitHub
commit 1122be3399
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 744 additions and 5 deletions

View file

@ -188,6 +188,9 @@ class ApiRouter {
this.router.get('/me/series/:id/readd-to-continue-listening', MeController.readdSeriesFromContinueListening.bind(this))
this.router.get('/me/stats/year/:year', MeController.getStatsForYear.bind(this))
this.router.post('/me/ereader-devices', MeController.updateUserEReaderDevices.bind(this))
this.router.post('/me/follows/series/:id', MeController.followSeries.bind(this))
this.router.delete('/me/follows/series/:id', MeController.unfollowSeries.bind(this))
this.router.get('/me/follows', MeController.getFollows.bind(this))
//
// Backup Routes