1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

Update StoryTransformer

This commit is contained in:
Daniel Supernault 2020-02-18 00:40:37 -07:00
parent 876323228a
commit 4c332ce700
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -16,19 +16,16 @@ class StoryTransformer extends Fractal\TransformerAbstract
return [ return [
'id' => (string) $story->id, 'id' => (string) $story->id,
'photo' => $story->profile->avatarUrl(), 'photo' => $story->profile->avatarUrl(),
'name' => '', 'name' => $story->profile->username,
'link' => '', 'link' => $story->profile->url(),
'lastUpdated' => $story->updated_at->format('U'), 'lastUpdated' => $story->updated_at->format('U'),
'seen' => $story->seen(), 'seen' => $story->seen(),
'items' => [],
]; ];
} }
public function includeItems(Story $story) public function includeItems(Story $story)
{ {
$items = $story->items; return $this->item($story, new StoryItemTransformer());
return $this->collection($items, new StoryItemTransformer());
} }
} }