diff options
| author | grunfink <grunfink@comam.es> | 2025-05-18 08:23:48 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-05-18 08:23:48 +0200 |
| commit | ee84140ecceb07dad8ea36cc5aa29b91bbb48a56 (patch) | |
| tree | 077e8defca025ed364741a10b7557c02c554ab0f /data.c | |
| parent | 8ae0089bdb3c246810013de5c9541072b2593f00 (diff) | |
Added a pending follow request count next to the "people" link.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1335,6 +1335,16 @@ xs_list *pending_list(snac *user) } +int pending_count(snac *user) +/* returns the number of pending follow confirmations */ +{ + xs *spec = xs_fmt("%s/pending/""*.json", user->basedir); + xs *l = xs_glob(spec, 0, 0); + + return xs_list_len(l); +} + + /** timeline **/ double timeline_mtime(snac *snac) |