Update DeleteAccountPipeline, fix typo

pull/3343/head
Daniel Supernault 3 years ago
parent 75837538af
commit 2533bd51a9
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -119,7 +119,7 @@ class DeleteAccountPipeline implements ShouldQueue
Bookmark::whereProfileId($id)->forceDelete();
EmailVerification::whereUserId($user->id)->forceDelete();
StatusHashtag::whereProfileId($id)->delete();
DirectMessage::whereFromId($id)->orWhereToId($id)->delete();
DirectMessage::whereFromId($id)->orWhere('to_id', $id)->delete();
StatusArchived::whereProfileId($id)->delete();
UserPronoun::whereProfileId($id)->delete();
FollowRequest::whereFollowingId($id)

Loading…
Cancel
Save