pull/4325/head
Daniel Supernault 2023-04-24 03:26:36 -06:00
rodzic 4fedfbe8fd
commit 7d14e07901
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -35,7 +35,7 @@ class AdminNewAutospam extends Mailable
public function envelope()
{
return new Envelope(
subject: '[' . config('pixelfed.domain.app') . '] Spam Post Detected',
subject: '[' . config('pixelfed.domain.app') . '] Spam Post Detected (Ref: autospam-' . $this->report->id . ')',
);
}

Wyświetl plik

@ -38,7 +38,7 @@ class AdminNewReport extends Mailable
$id = $this->report->id;
$object_type = last(explode("\\", $this->report->object_type));
return new Envelope(
subject: '[' . config('pixelfed.domain.app') . '] ' . $object_type . ' Report (#' . $id . '-' . $type . ')',
subject: '[' . config('pixelfed.domain.app') . '] ' . $object_type . ' Report (Ref: report-' . $id . '-' . $type . ')',
);
}