Update DeleteNote transformer

pull/968/head
Daniel Supernault 6 years ago
parent 11b4c8dd3a
commit 490ab045ef
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -10,7 +10,7 @@ class DeleteNote extends Fractal\TransformerAbstract
public function transform(Status $status)
{
return [
'@context' => [
'@context' => [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
],
@ -18,7 +18,7 @@ class DeleteNote extends Fractal\TransformerAbstract
'type' => 'Delete',
'actor' => $status->profile->permalink(),
'object' => [
'id' => $status->permalink(),
'id' => $status->url(),
'type' => 'Tombstone'
]
];

Loading…
Cancel
Save