0
Fork 0
mirror of https://github.com/stonith404/pingvin-share.git synced 2025-01-15 01:14:27 -05: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;
}