Skip to content
Snippets Groups Projects

fix: added INE to people

Merged GUVEN Kemal requested to merge addStudentNum into master
4 files
+ 133
118
Compare changes
  • Side-by-side
  • Inline
Files
4
import { IsBoolean, IsString, IsNotEmpty, IsOptional } from 'class-validator';
import { IsBoolean, IsString, IsNotEmpty, IsOptional, IsNumber } from 'class-validator';
export class CreatePeopleDto {
export class CreatePeopleDto {
@IsString()
@IsNumber()
@IsNotEmpty()
@IsNotEmpty()
firstname: string;
ine: number;
@IsString()
@IsString()
@IsNotEmpty()
@IsNotEmpty()
lastname: string;
firstname: string;
@IsOptional()
@IsString()
passwordHash: string;
@IsNotEmpty()
lastname: string;
@IsString()
@IsNotEmpty()
@IsOptional()
email: string;
passwordHash: string;
@IsNotEmpty()
@IsString()
role: number;
@IsNotEmpty()
email: string;
}
\ No newline at end of file
@IsNotEmpty()
 
role: number;
 
 
}
Loading