From ab1bb3854a00b0a78119108afc5d85d0b4426741 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 12 May 2023 16:27:52 -0500 Subject: [PATCH] Return empty array for public timeline --- src/app.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app.ts b/src/app.ts index 5b72788..245c837 100644 --- a/src/app.ts +++ b/src/app.ts @@ -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);