Return empty array for public timeline

This commit is contained in:
Alex Gleason 2023-05-12 16:27:52 -05:00
parent 45807e29de
commit ab1bb3854a
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ app.get('/api/v1/blocks', emptyArrayController);
app.get('/api/v1/mutes', emptyArrayController);
app.get('/api/v1/domain_blocks', emptyArrayController);
app.get('/api/v1/markers', emptyObjectController);
app.get('/api/v1/timelines/public', emptyArrayController);
app.get('/', indexController);