feat(attachments): refactor attachment management to use attachable pivot table and update related models and tests

This commit is contained in:
2026-06-25 15:30:11 -03:00
parent ee59236d55
commit 7994fe0c96
8 changed files with 184 additions and 40 deletions

View File

@@ -18,7 +18,7 @@ class StoreS3TestFileRequest extends FormRequest
{
return [
'file' => ['required', 'file', 'max:10240'],
'directory' => ['nullable', 'string', 'max:255'],
'path' => ['required', 'string', 'max:2048'],
'expires_in_minutes' => ['nullable', 'integer', 'min:1', 'max:1440'],
];
}