diff options
author | default <nobody@localhost> | 2024-04-29 09:26:37 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2024-04-29 09:26:37 +0200 |
commit | 29fb43079761796e34209611ec93bd651b871cab (patch) | |
tree | 92032b2b28cf51dcc534124334b6ff8561724441 /snac.h | |
parent | 9a13e330f12aaf0fc1535e922efbf315308d252b (diff) |
More work in lists.
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -175,6 +175,7 @@ void tag_index(const char *id, const xs_dict *obj); xs_list *tag_search(char *tag, int skip, int show); xs_val *list_maint(snac *user, const char *list, int op); +xs_val *list_content(snac *user, const char *list_id, const char *actor_md5, int op); int actor_add(const char *actor, xs_dict *msg); int actor_get(const char *actor, xs_dict **data); @@ -339,11 +340,12 @@ int oauth_post_handler(const xs_dict *req, const char *q_path, char **body, int *b_size, char **ctype); int mastoapi_get_handler(const xs_dict *req, const char *q_path, char **body, int *b_size, char **ctype); -int mastoapi_delete_handler(const xs_dict *req, const char *q_path, - char **body, int *b_size, char **ctype); int mastoapi_post_handler(const xs_dict *req, const char *q_path, const char *payload, int p_size, char **body, int *b_size, char **ctype); +int mastoapi_delete_handler(const xs_dict *req, const char *q_path, + const char *payload, int p_size, + char **body, int *b_size, char **ctype); int mastoapi_put_handler(const xs_dict *req, const char *q_path, const char *payload, int p_size, char **body, int *b_size, char **ctype); |