Files
ghostfolio/apps/api/src/app/platform/create-platform.dto.ts
Thomas Kaul f1f4f6247d Feature/validate url in create and update platform dto (#3235)
* Validate url

* Update changelog
2024-04-04 09:08:37 +02:00

13 lines
202 B
TypeScript

import { IsString, IsUrl } from 'class-validator';
export class CreatePlatformDto {
@IsString()
name: string;
@IsUrl({
protocols: ['https'],
require_protocol: true
})
url: string;
}