From 036be9d02ca2f96912cbd2dbad65ce9adea36b03 Mon Sep 17 00:00:00 2001 From: default Date: Tue, 11 Apr 2023 20:16:12 +0200 Subject: [PATCH] Added some comments. --- mastoapi.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/mastoapi.c b/mastoapi.c index 5755ad7..e1d0c9d 100644 --- a/mastoapi.c +++ b/mastoapi.c @@ -763,50 +763,56 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, } else if (strcmp(cmd, "/filters") == 0) { - /* TBD */ + /* snac will never have filters */ *body = xs_dup("[]"); *ctype = "application/json"; status = 200; } else if (strcmp(cmd, "/favourites") == 0) { - /* TBD */ + /* snac will never support a list of favourites */ *body = xs_dup("[]"); *ctype = "application/json"; status = 200; } else if (strcmp(cmd, "/bookmarks") == 0) { + /* snac does not support bookmarks */ *body = xs_dup("[]"); *ctype = "application/json"; status = 200; } else if (strcmp(cmd, "/lists") == 0) { + /* snac does not support lists */ *body = xs_dup("[]"); *ctype = "application/json"; status = 200; } else if (strcmp(cmd, "/scheduled_statuses") == 0) { + /* snac does not scheduled notes */ *body = xs_dup("[]"); *ctype = "application/json"; status = 200; } else if (strcmp(cmd, "/follow_requests") == 0) { + /* snac does not support optional follow confirmations */ *body = xs_dup("[]"); *ctype = "application/json"; status = 200; } else if (strcmp(cmd, "/announcements") == 0) { + /* snac has no announcements (yet?) */ *body = xs_dup("[]"); *ctype = "application/json"; status = 200; } else if (strcmp(cmd, "/custom_emojis") == 0) { + /* are you kidding me? */ *body = xs_dup("[]"); *ctype = "application/json"; status = 200;