( url: string | null | undefined, paramName = 'imageUrl' )
| 780 | * Alias for validateExternalUrl for backward compatibility |
| 781 | */ |
| 782 | export function validateImageUrl( |
| 783 | url: string | null | undefined, |
| 784 | paramName = 'imageUrl' |
| 785 | ): ValidationResult { |
| 786 | return validateExternalUrl(url, paramName) |
| 787 | } |
| 788 | |
| 789 | /** |
| 790 | * Validates a proxy URL to prevent SSRF attacks |
no test coverage detected