summaryrefslogtreecommitdiff
path: root/mastoapi.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2 daysmastoapi: fixed status visibility error.Gravatar fruye1-39/+43
5 daysSome fixes.Gravatar violette1-1/+1
7 daysFixed more minor leaks.Gravatar grunfink1-1/+2
7 daysFixed some xs_fmt() usages.Gravatar grunfink1-3/+6
7 daysAdded emoji reactions (contributed by violette).Gravatar violette1-4/+156
2025-12-09Fixed small memory leak.Gravatar grunfink1-1/+1
2025-12-09make webpush use our notification server vkey instead of a random, ill-formatedGravatar violette p.1-1/+4
key (necessary for some client notifications, such as moshidon)
2025-11-30Fix user matchingGravatar rako1-2/+2
In order to be a proper prefix, the actor url must end with a '/' otherwise it can match another user that starts with the same prefix: for example 'testuser' will match anything made by 'testuser2'
2025-10-21Instead of comparing the output status with == 200, it's better to check ↵Gravatar Stefano Marinelli1-2/+2
using valid_status()
2025-10-18Enhances Mastodon API compatibility by adding support for displaying remote ↵Gravatar Stefano Marinelli1-14/+325
users' follower/following/post counts and their posts when viewing profiles in Mastodon-compatible apps (Fedilab, Tusky, etc.). Fixes for Moshidon and improvements for better compatibility with HAProxy
2025-10-13xs_http.h: new file.Gravatar grunfink1-0/+1
2025-10-10mastoapi: added deleting for posts.Gravatar grunfink1-1/+35
I'm sure that I've done this before, but whatever.
2025-09-22making sure that global data is immutableGravatar byte1-1/+1
2025-09-20implementing visibility scopesGravatar byte1-6/+17
2025-09-14mastoapi: Fixed incorrect messages in status query.Gravatar grunfink1-1/+1
2025-09-03Renamed function list_content() to list_members().Gravatar grunfink1-4/+4
2025-08-14mastoapi: avoid repeating entries.Gravatar grunfink1-1/+6
2025-08-01Updated some comments.Gravatar grunfink1-1/+2
2025-07-27mastoapi: the 'approve_followers' toggle can also be set from apps.Gravatar grunfink1-2/+6
2025-07-27mastoapi: Fixed metadata in verify_credentials.Gravatar grunfink1-2/+25
2025-07-05mastoapi: fixed the fix.Gravatar grunfink1-2/+2
2025-07-05mastoapi: fixed a bug in mastoapi_timeline().Gravatar grunfink1-3/+7
2025-06-21Added support for /api/v1/instance/extended_description (with a hardcoded text).Gravatar grunfink1-0/+15
2025-06-16mastoapi: Added followed hashtag maintenance.Gravatar grunfink1-0/+48
2025-06-16mastoapi: added entrypoint /v1/followed_tags.Gravatar grunfink1-0/+34
2025-06-12mastoapi: another try to fix collapsing boosted posts in some apps.Gravatar grunfink1-3/+8
2025-06-11mastoapi: reverted reblog id, as it was breaking things.Gravatar grunfink1-4/+0
2025-06-11mastoapi: fixed reblog identifiers.Gravatar grunfink1-0/+6
This fixes weird behaviour in apps like Tusky, where boosts' content disappear after clicking on them.
2025-05-29mastoapi: fixed uploaded images name collision.Gravatar grunfink1-2/+4
2025-05-27New function timeline_here().Gravatar grunfink1-3/+1
2025-05-27Renamed timeline_here() to timeline_here_by_md5(), as it always should have ↵Gravatar grunfink1-1/+1
been.
2025-05-22Minor memory leak fixes.Gravatar grunfink1-1/+1
2025-05-22add missed replacement to the `mastoapi_get_handler` function (`search` case)Gravatar postscriptum1-1/+2
2025-05-22cleanup ending spacesGravatar postscriptum1-5/+5
2025-05-19performance: use following_list_len in more placesGravatar green1-8/+8
2025-05-18mastoapi: added post endpoints for 'authorize' and 'reject' follow requests.Gravatar grunfink1-0/+51
2025-05-18mastoapi: added endpoint /v1/follow_requests.Gravatar grunfink1-4/+20
2025-05-14mastoapi: Also process the types[] argument in notifications.Gravatar grunfink1-8/+13
2025-04-27Mastoapi: correctly communicate 'approve_followers'.Gravatar grunfink1-1/+4
2025-04-26mastoapi: fix md5 issuesGravatar green1-1/+8
2025-04-26mastoapi: support lists for usersGravatar green1-15/+40
2025-04-02mastoapi: added support for scheduled posts.Gravatar default1-6/+16
2025-03-22mastoapi: fixed instance peers to return only the domains.Gravatar default1-1/+11
2025-03-22mastoapi: Added support for /api/v1/instance/peers.Gravatar default1-0/+9
2025-03-17Minor tweak.Gravatar default1-3/+2
2025-03-17mastoapi: added support for /api/v1/custom_emojis (contributed by violette).Gravatar default1-2/+19
2025-03-03Deleted (by now) any ways of setting a note's publish date.Gravatar default1-2/+1
2025-03-02msg_note() accepts a nullable post date.Gravatar default1-2/+3
2025-02-07mastoapi: notify the maximum configured attachments.Gravatar default1-1/+6
2025-01-27Minor optimization in timeline retrieving.Gravatar default1-1/+1
Functions now receive an optional int *more, set to 1 if there are more than the 'show' requested.