Skip to content

Commit

Permalink
Fixed new report setting default true on user:delete
Browse files Browse the repository at this point in the history
  • Loading branch information
blt950 committed Jul 18, 2021
1 parent fdf4c1a commit 86e1bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/UserDelete.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function handle()
$user->remember_token = null;
$user->setting_workmail_address = null;
$user->setting_workmail_expire = null;
$user->setting_notify_newreport = false;
$user->setting_notify_newreport = true;
$user->setting_notify_newreq = false;
$user->setting_notify_closedreq = false;
$user->setting_notify_newexamreport = false;
Expand Down

0 comments on commit 86e1bd8

Please sign in to comment.