snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 036be9d02ca2f96912cbd2dbad65ce9adea36b03
parent a7f3ba602768e39e2d55ae0329b38538edc5fa2c
Author: default <nobody@localhost>
Date:   Tue, 11 Apr 2023 20:16:12 +0200

Added some comments.

Diffstat:
Mmastoapi.c | 10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git 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;