Added some comments.

This commit is contained in:
default 2023-04-11 20:16:12 +02:00
parent a7f3ba6027
commit 036be9d02c

View File

@ -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;