mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-02-04 19:00:47 +00:00
Update StatusTransformer
This commit is contained in:
parent
072a5749af
commit
111a627048
1 changed files with 24 additions and 22 deletions
|
@ -22,10 +22,7 @@ class StatusTransformer extends Fractal\TransformerAbstract
|
||||||
'url' => $status->url(),
|
'url' => $status->url(),
|
||||||
'in_reply_to_id' => $status->in_reply_to_id,
|
'in_reply_to_id' => $status->in_reply_to_id,
|
||||||
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
|
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
|
||||||
|
'reblog' => $status->reblog_of_id || $status->in_reply_to_id ? $this->transform($status->parent()) : null,
|
||||||
// TODO: fixme
|
|
||||||
'reblog' => null,
|
|
||||||
|
|
||||||
'content' => "$status->rendered",
|
'content' => "$status->rendered",
|
||||||
'created_at' => $status->created_at->format('c'),
|
'created_at' => $status->created_at->format('c'),
|
||||||
'emojis' => [],
|
'emojis' => [],
|
||||||
|
@ -35,11 +32,16 @@ class StatusTransformer extends Fractal\TransformerAbstract
|
||||||
'favourited' => $status->liked(),
|
'favourited' => $status->liked(),
|
||||||
'muted' => null,
|
'muted' => null,
|
||||||
'sensitive' => (bool) $status->is_nsfw,
|
'sensitive' => (bool) $status->is_nsfw,
|
||||||
'spoiler_text' => '',
|
'spoiler_text' => $status->cw_summary,
|
||||||
'visibility' => $status->visibility,
|
'visibility' => $status->visibility,
|
||||||
'application' => null,
|
'application' => [
|
||||||
|
'name' => 'web',
|
||||||
|
'website' => null
|
||||||
|
],
|
||||||
'language' => null,
|
'language' => null,
|
||||||
'pinned' => null,
|
'pinned' => null,
|
||||||
|
|
||||||
|
'pf_type' => $status->type,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue