You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message: \sprintf('You have successfully resurrected [url=%s/torrents/', $appurl).$resurrection->torrent->id.']'.$resurrection->torrent->name.'[/url] ! Thank you for bringing a torrent back from the dead! Enjoy the freeleech tokens!',
message: '[b]Attention:[/b] Torrent '.$torrent->name." has been removed from our site. Our system shows that you were either the uploader, a seeder or a leecher on said torrent. We just wanted to let you know you can safely remove it from your client.\n\n[b]Removal Reason:[/b] ".$request->message,
subject: 'ATTENTION - Your API key has been reset',
50
-
message: "Your API key has been reset by staff. You will need to update your API key in all your scripts to continue using the API.\n\nFor more information, please create a helpdesk ticket.",
subject: 'ATTENTION - Your passkey has been reset',
67
-
message: "Your passkey has been reset by staff. You will need to update your passkey in all your torrent clients to continue seeding.\n\nFor more information, please create a helpdesk ticket.",
Copy file name to clipboardexpand all lines: app/Http/Controllers/User/PasswordController.php
+2-4
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
19
19
useApp\Http\Controllers\Controller;
20
20
useApp\Models\User;
21
+
useApp\Notifications\PasswordUpdate;
21
22
useIlluminate\Http\Request;
22
23
useIlluminate\Support\Facades\DB;
23
24
useIlluminate\Support\Facades\Hash;
@@ -57,10 +58,7 @@ protected function update(Request $request, User $user): \Illuminate\Http\Redire
57
58
$user->passwordResetHistories()->create();
58
59
59
60
if ($changedByStaff) {
60
-
$user->sendSystemNotification(
61
-
subject: 'ATTENTION - Your password has been changed',
62
-
message: "Your password has been changed by staff. You will need to update your password manager with the new password.\n\nFor more information, please create a helpdesk ticket.",
subject: 'ATTENTION - Your RSS key has been reset',
49
-
message: "Your RSS key has been reset by staff. You will need to update your RSS key in your torrent client to continue receiving new torrents.\n\nFor more information, please create a helpdesk ticket.",
@@ -471,18 +469,7 @@ final public function deleteRecords(): void
471
469
$torrent->delete();
472
470
}
473
471
474
-
foreach ($usersas$user) {
475
-
User::sendSystemNotificationTo(
476
-
userId: $user,
477
-
subject: 'Bulk Torrents Deleted - '.$title.'! ',
478
-
message: '[b]Attention: [/b] The following torrents have been removed from our site.
479
-
[list]
480
-
[*]'.implode(' [*]', $names).'
481
-
[/list]
482
-
Our system shows that you were either the uploader, a seeder or a leecher on said torrent. We just wanted to let you know you can safely remove it from your client.
0 commit comments