Browse Source

Update RelationshipTransformer

Daniel Supernault 6 years ago
parent
commit
6029cc79ab
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Transformer/Api/RelationshipTransformer.php

+ 2 - 2
app/Transformer/Api/RelationshipTransformer.php

@@ -15,8 +15,8 @@ class RelationshipTransformer extends Fractal\TransformerAbstract
             'id' => (string) $profile->id,
             'id' => (string) $profile->id,
             'following' => $user->follows($profile),
             'following' => $user->follows($profile),
             'followed_by' => $user->followedBy($profile),
             'followed_by' => $user->followedBy($profile),
-            'blocking' => null,
-            'muting' => null,
+            'blocking' => $user->blockedIds()->contains($profile->id),
+            'muting' => $user->mutedIds()->contains($profile->id),
             'muting_notifications' => null,
             'muting_notifications' => null,
             'requested' => null,
             'requested' => null,
             'domain_blocking' => null,
             'domain_blocking' => null,