Update RelationshipTransformer

This commit is contained in:
Daniel Supernault 2019-06-09 20:36:08 -06:00
parent 3679332114
commit 1e541e34ee
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -10,13 +10,14 @@ class RelationshipTransformer extends Fractal\TransformerAbstract
{
public function transform(Profile $profile)
{
$user = Auth::user()->profile;
$auth = Auth::check();
$user = $auth ? Auth::user()->profile : false;
return [
'id' => (string) $profile->id,
'following' => $user->follows($profile),
'followed_by' => $user->followedBy($profile),
'blocking' => $user->blockedIds()->contains($profile->id),
'muting' => $user->mutedIds()->contains($profile->id),
'following' => $auth ? $user->follows($profile) : false,
'followed_by' => $auth ? $user->followedBy($profile) : false,
'blocking' => $auth ? $user->blockedIds()->contains($profile->id) : false,
'muting' => $auth ? $user->mutedIds()->contains($profile->id) : false,
'muting_notifications' => null,
'requested' => null,
'domain_blocking' => null,