mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
19 lines
291 B
TypeScript
19 lines
291 B
TypeScript
import { IsOptional } from 'class-validator';
|
|
|
|
export class EditSharedLinkDto {
|
|
@IsOptional()
|
|
description?: string;
|
|
|
|
@IsOptional()
|
|
expiresAt?: Date | null;
|
|
|
|
@IsOptional()
|
|
allowUpload?: boolean;
|
|
|
|
@IsOptional()
|
|
allowDownload?: boolean;
|
|
|
|
@IsOptional()
|
|
showExif?: boolean;
|
|
}
|