From 7efd5c1822ae23807ef578894f924040e4d24e95 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 3 May 2024 17:09:20 -0500 Subject: [PATCH] Clean up "not implemented" endpoints --- src/app.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app.ts b/src/app.ts index d80bf37..b382cea 100644 --- a/src/app.ts +++ b/src/app.ts @@ -208,9 +208,7 @@ app.post('/api/v1/reports', requirePubkey, reportsController); // Not (yet) implemented. app.get('/api/v1/custom_emojis', emptyArrayController); app.get('/api/v1/filters', emptyArrayController); -app.get('/api/v1/mutes', emptyArrayController); app.get('/api/v1/domain_blocks', emptyArrayController); -app.get('/api/v1/markers', emptyObjectController); app.get('/api/v1/conversations', emptyArrayController); app.get('/api/v1/lists', emptyArrayController);