Преглед изворни кода

Fixed a bug where deleting a user wouldn't delete the linked discord acc

AVMG20 пре 4 година
родитељ
комит
fc2d972183
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      app/Models/User.php

+ 2 - 0
app/Models/User.php

@@ -107,6 +107,8 @@ class User extends Authenticatable implements MustVerifyEmail
 
             $user->vouchers()->detach();
 
+            $user->discordUser()->delete();
+
             Pterodactyl::client()->delete("/application/users/{$user->pterodactyl_id}");
         });
     }