1
0
Fork 0

Update StatusTransformer

This commit is contained in:
Daniel Supernault 2018-12-02 00:42:34 -07:00
parent 072a5749af
commit 111a627048
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 24 additions and 22 deletions

View File

@ -22,10 +22,7 @@ class StatusTransformer extends Fractal\TransformerAbstract
'url' => $status->url(),
'in_reply_to_id' => $status->in_reply_to_id,
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
// TODO: fixme
'reblog' => null,
'reblog' => $status->reblog_of_id || $status->in_reply_to_id ? $this->transform($status->parent()) : null,
'content' => "$status->rendered",
'created_at' => $status->created_at->format('c'),
'emojis' => [],
@ -35,11 +32,16 @@ class StatusTransformer extends Fractal\TransformerAbstract
'favourited' => $status->liked(),
'muted' => null,
'sensitive' => (bool) $status->is_nsfw,
'spoiler_text' => '',
'spoiler_text' => $status->cw_summary,
'visibility' => $status->visibility,
'application' => null,
'application' => [
'name' => 'web',
'website' => null
],
'language' => null,
'pinned' => null,
'pf_type' => $status->type,
];
}