mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
Added some comments.
This commit is contained in:
parent
a7f3ba6027
commit
036be9d02c
1 changed files with 8 additions and 2 deletions
10
mastoapi.c
10
mastoapi.c
|
@ -763,50 +763,56 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(cmd, "/filters") == 0) {
|
if (strcmp(cmd, "/filters") == 0) {
|
||||||
/* TBD */
|
/* snac will never have filters */
|
||||||
*body = xs_dup("[]");
|
*body = xs_dup("[]");
|
||||||
*ctype = "application/json";
|
*ctype = "application/json";
|
||||||
status = 200;
|
status = 200;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(cmd, "/favourites") == 0) {
|
if (strcmp(cmd, "/favourites") == 0) {
|
||||||
/* TBD */
|
/* snac will never support a list of favourites */
|
||||||
*body = xs_dup("[]");
|
*body = xs_dup("[]");
|
||||||
*ctype = "application/json";
|
*ctype = "application/json";
|
||||||
status = 200;
|
status = 200;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(cmd, "/bookmarks") == 0) {
|
if (strcmp(cmd, "/bookmarks") == 0) {
|
||||||
|
/* snac does not support bookmarks */
|
||||||
*body = xs_dup("[]");
|
*body = xs_dup("[]");
|
||||||
*ctype = "application/json";
|
*ctype = "application/json";
|
||||||
status = 200;
|
status = 200;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(cmd, "/lists") == 0) {
|
if (strcmp(cmd, "/lists") == 0) {
|
||||||
|
/* snac does not support lists */
|
||||||
*body = xs_dup("[]");
|
*body = xs_dup("[]");
|
||||||
*ctype = "application/json";
|
*ctype = "application/json";
|
||||||
status = 200;
|
status = 200;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(cmd, "/scheduled_statuses") == 0) {
|
if (strcmp(cmd, "/scheduled_statuses") == 0) {
|
||||||
|
/* snac does not scheduled notes */
|
||||||
*body = xs_dup("[]");
|
*body = xs_dup("[]");
|
||||||
*ctype = "application/json";
|
*ctype = "application/json";
|
||||||
status = 200;
|
status = 200;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(cmd, "/follow_requests") == 0) {
|
if (strcmp(cmd, "/follow_requests") == 0) {
|
||||||
|
/* snac does not support optional follow confirmations */
|
||||||
*body = xs_dup("[]");
|
*body = xs_dup("[]");
|
||||||
*ctype = "application/json";
|
*ctype = "application/json";
|
||||||
status = 200;
|
status = 200;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(cmd, "/announcements") == 0) {
|
if (strcmp(cmd, "/announcements") == 0) {
|
||||||
|
/* snac has no announcements (yet?) */
|
||||||
*body = xs_dup("[]");
|
*body = xs_dup("[]");
|
||||||
*ctype = "application/json";
|
*ctype = "application/json";
|
||||||
status = 200;
|
status = 200;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(cmd, "/custom_emojis") == 0) {
|
if (strcmp(cmd, "/custom_emojis") == 0) {
|
||||||
|
/* are you kidding me? */
|
||||||
*body = xs_dup("[]");
|
*body = xs_dup("[]");
|
||||||
*ctype = "application/json";
|
*ctype = "application/json";
|
||||||
status = 200;
|
status = 200;
|
||||||
|
|
Loading…
Reference in a new issue