deleted file simple-local-avatars.php

This commit is contained in:
2024-07-19 19:46:42 +00:00
committed by Gitium
parent 44c2f9f9a2
commit b964c1846c
290 changed files with 0 additions and 70347 deletions

View File

@ -1,21 +0,0 @@
<?php
namespace Activitypub\Integration;
class Jetpack {
public static function init() {
\add_filter( 'jetpack_sync_post_meta_whitelist', [ __CLASS__, 'add_sync_meta' ] );
}
public static function add_sync_meta( $whitelist ) {
if ( ! is_array( $whitelist ) ) {
return $whitelist;
}
$activitypub_meta_keys = [
'activitypub_user_id',
'activitypub_inbox',
'activitypub_actor_json',
];
return \array_merge( $whitelist, $activitypub_meta_keys );
}
}