mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-25 14:47:39 +00:00
* refactor(server): shared links * chore: tests * fix: bugs and tests * fix: missed one expired at * fix: standardize file upload checks * test: lower flutter version Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
12 lines
315 B
TypeScript
12 lines
315 B
TypeScript
import { AlbumEntity, AssetEntity, SharedLinkType } from '@app/infra/db/entities';
|
|
|
|
export class CreateSharedLinkDto {
|
|
description?: string;
|
|
expiresAt?: string;
|
|
type!: SharedLinkType;
|
|
assets!: AssetEntity[];
|
|
album?: AlbumEntity;
|
|
allowUpload?: boolean;
|
|
allowDownload?: boolean;
|
|
showExif?: boolean;
|
|
}
|