forked from mirror/pixelfed
Update DeleteAccountPipeline, fix typo
This commit is contained in:
parent
75837538af
commit
2533bd51a9
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class DeleteAccountPipeline implements ShouldQueue
|
||||||
Bookmark::whereProfileId($id)->forceDelete();
|
Bookmark::whereProfileId($id)->forceDelete();
|
||||||
EmailVerification::whereUserId($user->id)->forceDelete();
|
EmailVerification::whereUserId($user->id)->forceDelete();
|
||||||
StatusHashtag::whereProfileId($id)->delete();
|
StatusHashtag::whereProfileId($id)->delete();
|
||||||
DirectMessage::whereFromId($id)->orWhereToId($id)->delete();
|
DirectMessage::whereFromId($id)->orWhere('to_id', $id)->delete();
|
||||||
StatusArchived::whereProfileId($id)->delete();
|
StatusArchived::whereProfileId($id)->delete();
|
||||||
UserPronoun::whereProfileId($id)->delete();
|
UserPronoun::whereProfileId($id)->delete();
|
||||||
FollowRequest::whereFollowingId($id)
|
FollowRequest::whereFollowingId($id)
|
||||||
|
|
Loading…
Reference in a new issue