* add first concept * completed configuration ui update * add button for testing email configuration * improve mobile layout * add migration * run formatter * delete unnecessary modal * remove unused comment
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
import { IsEmail, IsNotEmpty } from "class-validator";
|
|
|
|
export class TestEmailDTO {
|
|
@IsEmail()
|
|
@IsNotEmpty()
|
|
email: string;
|
|
}
|