feat: add 'url' field to Integration model and update related requests and seeder

This commit is contained in:
2026-07-03 14:45:05 -03:00
parent 3887a4fcba
commit 21b8fa5f35
5 changed files with 17 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ class StoreIntegrationRequest extends FormRequest
return [
'integration_code' => ['required', 'string', 'unique:integrations,integration_code'],
'name' => ['required', 'string', 'max:255'],
'url' => ['nullable', 'url', 'max:255'],
'integration_data_schema' => ['nullable', 'array'],
];
}