Merge branch 'implemented' into 'main'

Clean up "not implemented" endpoints

See merge request soapbox-pub/ditto!216
This commit is contained in:
Alex Gleason 2024-05-03 22:18:35 +00:00
commit a45d45d614
1 changed files with 0 additions and 2 deletions

View File

@ -208,9 +208,7 @@ app.post('/api/v1/reports', requirePubkey, reportsController);
// Not (yet) implemented. // Not (yet) implemented.
app.get('/api/v1/custom_emojis', emptyArrayController); app.get('/api/v1/custom_emojis', emptyArrayController);
app.get('/api/v1/filters', emptyArrayController); app.get('/api/v1/filters', emptyArrayController);
app.get('/api/v1/mutes', emptyArrayController);
app.get('/api/v1/domain_blocks', emptyArrayController); app.get('/api/v1/domain_blocks', emptyArrayController);
app.get('/api/v1/markers', emptyObjectController);
app.get('/api/v1/conversations', emptyArrayController); app.get('/api/v1/conversations', emptyArrayController);
app.get('/api/v1/lists', emptyArrayController); app.get('/api/v1/lists', emptyArrayController);