Implemented the getter for loading the postalcodelocale from env

ref #43
This commit is contained in:
2020-12-22 12:38:53 +01:00
parent 1bf6d3d564
commit b8c93bf476
3 changed files with 17 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
import { IsNotEmpty, IsOptional, IsPostalCode, IsString } from 'class-validator';
import { config } from '../../config';
import { Address } from '../entities/Address';
/**
@@ -35,7 +36,7 @@ export class CreateAddress {
*/
@IsString()
@IsNotEmpty()
@IsPostalCode("DE")
@IsPostalCode(config.postalcode_validation_countrycode)
postalcode: string;
/**