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;
}