kopia lustrzana https://github.com/pixelfed/pixelfed
Add AP Announce Transformer
rodzic
e2e5918213
commit
23f4a1cfec
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Transformer\ActivityPub\Verb;
|
||||||
|
|
||||||
|
use App\Status;
|
||||||
|
use League\Fractal;
|
||||||
|
|
||||||
|
class Announce extends Fractal\TransformerAbstract
|
||||||
|
{
|
||||||
|
public function transform(Status $status)
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
||||||
|
'type' => 'Announce',
|
||||||
|
'actor' => $status->profile->permalink(),
|
||||||
|
'object' => $status->parent()->url()
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
Ładowanie…
Reference in New Issue