Added additional filters to attachment datatable

This commit is contained in:
Jan Böhmer 2025-02-22 17:48:26 +01:00
parent 48be9a8098
commit f146d88aa5
3 changed files with 17 additions and 0 deletions

View file

@ -100,6 +100,15 @@ class AttachmentFilterType extends AbstractType
'label' => 'attachment.edit.show_in_table'
]);
$builder->add('originalFileName', TextConstraintType::class, [
'label' => 'attachment.file_name'
]);
$builder->add('externalLink', TextConstraintType::class, [
'label' => 'attachment.table.external_link'
]);
$builder->add('lastModified', DateTimeConstraintType::class, [
'label' => 'lastModified'
]);