This commit is contained in:
Matthias Pfefferle 2023-07-25 13:47:49 +02:00
parent 921ca0c1c6
commit 38cd0b973b
4 changed files with 4 additions and 4 deletions

View file

@ -69,7 +69,7 @@ class Followers {
$json->{'@context'} = \Activitypub\get_context();
$json->id = \home_url( \add_query_arg( null, null ) );
$json->id = get_rest_url_by_path( sprintf( 'users/%d/followers', $user->get__id() ) );
$json->generator = 'http://wordpress.org/?v=' . \get_bloginfo_rss( 'version' );
$json->actor = $user->get_id();
$json->type = 'OrderedCollectionPage';

View file

@ -62,7 +62,7 @@ class Following {
$json->{'@context'} = \Activitypub\get_context();
$json->id = \home_url( \add_query_arg( null, null ) );
$json->id = get_rest_url_by_path( sprintf( 'users/%d/following', $user->get__id() ) );
$json->generator = 'http://wordpress.org/?v=' . \get_bloginfo_rss( 'version' );
$json->actor = $user->get_id();
$json->type = 'OrderedCollectionPage';

View file

@ -90,7 +90,7 @@ class Inbox {
$json = new \stdClass();
$json->{'@context'} = get_context();
$json->id = \home_url( \add_query_arg( null, null ) );
$json->id = get_rest_url_by_path( sprintf( 'users/%d/inbox', $user->get__id() ) );
$json->generator = 'http://wordpress.org/?v=' . \get_bloginfo_rss( 'version' );
$json->type = 'OrderedCollectionPage';
$json->partOf = get_rest_url_by_path( sprintf( 'users/%d/inbox', $user->get__id() ) ); // phpcs:ignore

View file

@ -71,7 +71,7 @@ class Outbox {
$json = new stdClass();
$json->{'@context'} = get_context();
$json->id = \home_url( \add_query_arg( null, null ) );
$json->id = get_rest_url_by_path( sprintf( 'users/%d/outbox', $user_id ) );
$json->generator = 'http://wordpress.org/?v=' . \get_bloginfo_rss( 'version' );
$json->actor = $user->get_id();
$json->type = 'OrderedCollectionPage';