@@ -46,6 +46,7 @@ or component's ID or configuration array that can be resolved as the above. Defa
4646
4747- [ ban] ( #ban )
4848- [ befriend] ( #befriend )
49+ - [ disconnect] ( #disconnect )
4950- [ edit] ( #edit )
5051- [ getAcquaintance] ( #getacquaintance )
5152- [ getAcquaintanceRepository] ( #getacquaintancerepository )
@@ -57,8 +58,6 @@ or component's ID or configuration array that can be resolved as the above. Defa
5758- [ register] ( #register )
5859- [ remove] ( #remove )
5960- [ unban] ( #unban )
60- - [ unfriend] ( #unfriend )
61- - [ unignore] ( #unignore )
6261
6362### ban
6463
@@ -84,8 +83,8 @@ befriend(
8483): Podium\Api\PodiumResponse
8584```
8685
87- Befriends the target as the member if the target is not befriended already (can be ignored though). See also [ unfriend ] ( #unfriend ) ,
88- [ ignore ] ( #ignore ) , and [ unignore ] ( #unignore ) .
86+ Befriends the target as the member if the target is not befriended already (can be ignored though). See also [ ignore ] ( #ignore )
87+ and [ disconnect ] ( #disconnect ) .
8988
9089#### Events
9190
@@ -94,6 +93,24 @@ Befriends the target as the member if the target is not befriended already (can
9493
9594---
9695
96+ ### disconnect
97+
98+ ```
99+ disconnect(
100+ Podium\Api\Interfaces\MemberRepositoryInterface $member,
101+ Podium\Api\Interfaces\MemberRepositoryInterface $target
102+ ): Podium\Api\PodiumResponse
103+ ```
104+
105+ Disconnects the target from the member if there is a relationship between them. See also [ befriend] ( #befriend ) and [ ignore] ( #ignore ) .
106+
107+ #### Events
108+
109+ - ` Podium\Api\Services\Member\MemberAcquaintance::EVENT_BEFORE_DISCONNECTING `
110+ - ` Podium\Api\Services\Member\MemberAcquaintance::EVENT_AFTER_DISCONNECTING `
111+
112+ ---
113+
97114### edit
98115
99116```
@@ -180,7 +197,7 @@ ignore(
180197```
181198
182199Ignores the target as the member if the target is not ignored already (can be befriended though). Member cannot send
183- messages to the member that ignores him. See also [ befriend] ( #unfriend ) , [ unfriend ] ( #unfriend ) , and [ unignore ] ( #unignore ) .
200+ messages to the member that ignores him. See also [ befriend] ( #unfriend ) and [ disconnect ] ( #disconnect ) .
184201
185202#### Events
186203
@@ -234,42 +251,4 @@ Unbans the member. See also [ban](#ban).
234251
235252---
236253
237- ### unfriend
238-
239- ```
240- unfriend(
241- Podium\Api\Interfaces\MemberRepositoryInterface $member,
242- Podium\Api\Interfaces\MemberRepositoryInterface $target
243- ): Podium\Api\PodiumResponse
244- ```
245-
246- Unfriends the target as the member if the target is befriended. See also [ befriend] ( #befriend ) , [ ignore] ( #ignore ) ,
247- and [ unignore] ( #unignore ) .
248-
249- #### Events
250-
251- - ` Podium\Api\Services\Member\MemberAcquaintance::EVENT_BEFORE_UNFRIENDING `
252- - ` Podium\Api\Services\Member\MemberAcquaintance::EVENT_AFTER_UNFRIENDING `
253-
254- ---
255-
256- ### unignore
257-
258- ```
259- unignore(
260- Podium\Api\Interfaces\MemberRepositoryInterface $member,
261- Podium\Api\Interfaces\MemberRepositoryInterface $target
262- ): Podium\Api\PodiumResponse
263- ```
264-
265- Unignores the target as the member if the target is ignored. See also [ befriend] ( #befriend ) , [ unfriend] ( #unfriend ) ,
266- and [ ignore] ( #ignore ) .
267-
268- #### Events
269-
270- - ` Podium\Api\Services\Member\MemberAcquaintance::EVENT_BEFORE_UNIGNORING `
271- - ` Podium\Api\Services\Member\MemberAcquaintance::EVENT_AFTER_UNIGNORING `
272-
273- ---
274-
275254[ <<< Index] ( ../README.md ) | [ Next >>> Message] ( message.md )
0 commit comments