diff options
author | default <nobody@localhost> | 2023-04-13 16:59:17 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-04-13 16:59:17 +0200 |
commit | bcde97c2d53f9c94c6ced2717945affa4ede554c (patch) | |
tree | e57442ff4bd0f2bc25ae516241ca5bcdaa0c3878 /snac.h | |
parent | 2d5d63554c32c7166933ce0d7d842c05471c83fe (diff) |
New function notify_add().
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* snac - A simple, minimalistic ActivityPub instance */ /* copyright (c) 2022 - 2023 grunfink / MIT license */ -#define VERSION "2.27" +#define VERSION "2.28-dev" #define USER_AGENT "snac/" VERSION @@ -137,6 +137,9 @@ d_char *history_list(snac *snac); void lastlog_write(snac *snac); +void notify_add(snac *snac, const char *type, const char *utype, + const char *actor, const char *objid); + void inbox_add(const char *inbox); void inbox_add_by_actor(const xs_dict *actor); xs_list *inbox_list(void); |