Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogermani87 committed Aug 29, 2024
2 parents 7f0d826 + 9cc8ce6 commit acc9bfc
Show file tree
Hide file tree
Showing 2 changed files with 403 additions and 404 deletions.
106 changes: 53 additions & 53 deletions config/filament-email.php
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
<?php

use RickDBCN\FilamentEmail\Models\Email;
use RickDBCN\FilamentEmail\Filament\Resources\EmailResource;

return [

'resource' => [
'class' => EmailResource::class,
'model' => Email::class,
'group' => null,
'sort' => null,
'icon' => null,
'default_sort_column' => 'created_at',
'default_sort_direction' => 'desc',
'datetime_format' => 'Y-m-d H:i:s',
'filters' => [
'created_at' => [
'date_format' => 'Y-m-d',
],
],
'table_search_fields' => [
'subject',
'from',
'to',
'cc',
'bcc',
],
],

'keep_email_for_days' => 60,

'label' => null,

'prune_enabled' => true,

'prune_crontab' => '0 0 * * *',

'can_access' => [
'role' => [],
],

'pagination_page_options' => [
10, 25, 50, 'all',
],

'attachments_disk' => 'local',
'store_attachments' => true,

//Use this option for customize tenant model class
//'tenant_model' => \App\Models\Team::class,

];
<?php

use RickDBCN\FilamentEmail\Filament\Resources\EmailResource;
use RickDBCN\FilamentEmail\Models\Email;

return [

'resource' => [
'class' => EmailResource::class,
'model' => Email::class,
'group' => null,
'sort' => null,
'icon' => null,
'default_sort_column' => 'created_at',
'default_sort_direction' => 'desc',
'datetime_format' => 'Y-m-d H:i:s',
'filters' => [
'created_at' => [
'date_format' => 'Y-m-d',
],
],
'table_search_fields' => [
'subject',
'from',
'to',
'cc',
'bcc',
],
],

'keep_email_for_days' => 60,

'label' => null,

'prune_enabled' => true,

'prune_crontab' => '0 0 * * *',

'can_access' => [
'role' => [],
],

'pagination_page_options' => [
10, 25, 50, 'all',
],

'attachments_disk' => 'local',
'store_attachments' => true,

//Use this option for customize tenant model class
//'tenant_model' => \App\Models\Team::class,

];
Loading

0 comments on commit acc9bfc

Please sign in to comment.