1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-06-30 06:30:11 +02:00

fix: share password validation

This commit is contained in:
Elias Schneider 2022-12-05 16:04:10 +01:00
parent 7a3967fd6f
commit c795b988df

View File

@ -1,3 +1,6 @@
import { IsString } from "class-validator";
export class SharePasswordDto {
@IsString()
password: string;
}