Update AP transformers

This commit is contained in:
Daniel Supernault 2019-04-03 21:04:14 -06:00
parent d40af20013
commit d47edd8bed
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 12 additions and 0 deletions

View File

@ -30,6 +30,11 @@ class CreateNote extends Fractal\TransformerAbstract
'@context' => [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
[
'Hashtag' => 'as:Hashtag',
'sensitive' => 'as:sensitive',
'commentsDisabled' => 'as:commentsDisabled',
]
],
'id' => $status->permalink(),
'type' => 'Create',
@ -58,6 +63,7 @@ class CreateNote extends Fractal\TransformerAbstract
];
})->toArray(),
'tag' => $tags,
'commentsDisabled' => (bool) $status->comments_disabled,
]
];
}

View File

@ -30,6 +30,11 @@ class Note extends Fractal\TransformerAbstract
'@context' => [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
[
'Hashtag' => 'as:Hashtag',
'sensitive' => 'as:sensitive',
'commentsDisabled' => 'as:commentsDisabled',
]
],
'id' => $status->url(),
'type' => 'Note',
@ -51,6 +56,7 @@ class Note extends Fractal\TransformerAbstract
];
})->toArray(),
'tag' => $tags,
'commentsDisabled' => (bool) $status->comments_disabled,
];
}
}