File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1+ ## v3.5.9
2+
3+ * feat: adding a way to get a list of blocked Friendships by current user by @mercExec
4+ * feat: adding a way to get a list of blocked Friendships by others by @mercExec
5+
16## v3.5.8
27
38* feat: adding get pending count function by @prawn185
Original file line number Diff line number Diff line change @@ -265,12 +265,25 @@ $user->getDeniedFriendships();
265265$user->getDeniedFriendships($perPage = 20, $fields = ['id','name']);
266266```
267267
268- #### Get a list of blocked Friendships
268+ #### Get a list of blocked Friendships in total
269269
270270``` php
271271$user->getBlockedFriendships();
272272$user->getBlockedFriendships($perPage = 20, $fields = ['id','name']);
273273```
274+ #### Get a list of blocked Friendships by current user
275+
276+ ``` php
277+ $user->getBlockedFriendshipsByCurrentUser();
278+ $user->getBlockedFriendshipsByCurrentUser($perPage = 20, $fields = ['id','name']);
279+ ```
280+
281+ #### Get a list of blocked Friendships by others
282+
283+ ``` php
284+ $user->getBlockedFriendshipsByOtherUsers();
285+ $user->getBlockedFriendshipsByOtherUsers($perPage = 20, $fields = ['id','name']);
286+ ```
274287
275288#### Get a list of pending Friend Requests
276289
You can’t perform that action at this time.
0 commit comments