2022-07-23 15:05:32 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'type_text' => [
|
|
|
|
|
\App\Models\SeedBoxRecord::TYPE_USER => 'User',
|
|
|
|
|
\App\Models\SeedBoxRecord::TYPE_ADMIN => 'Administrator',
|
|
|
|
|
],
|
|
|
|
|
'status_text' => [
|
|
|
|
|
\App\Models\SeedBoxRecord::STATUS_UNAUDITED => 'Unaudited',
|
|
|
|
|
\App\Models\SeedBoxRecord::STATUS_ALLOWED => 'Allowed',
|
|
|
|
|
\App\Models\SeedBoxRecord::STATUS_DENIED => 'Denied',
|
|
|
|
|
],
|
|
|
|
|
'status_change_message' => [
|
|
|
|
|
'subject' => 'SeedBox record status changed',
|
2023-03-19 17:31:15 +08:00
|
|
|
'body' => 'The status of your SeedBox record with ID :id was changed by :operator from :old_status to :new_status. Reason: :reason',
|
2022-07-23 15:05:32 +08:00
|
|
|
],
|
|
|
|
|
];
|