fix(server): external domain url validation (#11493)

* fix(web): Changes externalDomain to IsUrl()

* refactor(web): asset viewer actions (#11449)

* refactor(web): asset viewer actions

* motion photo slot and more refactoring

fix(web): Changes externalDomain to IsUrl()

---------

Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com>
pull/11535/head
martyfuhry 2024-07-31 14:09:30 -04:00 committed by GitHub
parent 01f8b7e458
commit 2c05ceaf50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -376,7 +376,8 @@ class SystemConfigReverseGeocodingDto {
}
class SystemConfigServerDto {
@IsString()
@ValidateIf((_, value: string) => value !== '')
@IsUrl({ require_tld: false, require_protocol: true, protocols: ['http', 'https'] })
externalDomain!: string;
@IsString()