-
Notifications
You must be signed in to change notification settings - Fork 83
activitypub_followers_sync_reconciled
github-actions[bot] edited this page Nov 14, 2025
·
2 revisions
Action triggered after reconciliation is complete.
/**
* Action triggered after reconciliation is complete.
*
* @param int $user_id
* @param string $actor_url
*/
function my_activitypub_followers_sync_reconciled_callback( int $user_id, string $actor_url ) {
// Your code here.
}
add_action( 'activitypub_followers_sync_reconciled', 'my_activitypub_followers_sync_reconciled_callback', 10, 2 );-
int$user_idThe local user ID that triggered the reconciliation. -
string$actor_urlThe remote actor URL.
\do_action( 'activitypub_followers_sync_reconciled', $user_id, $actor_url )Follow @[email protected] for updates and news.