mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat: pass filename in body on asset upload (#19138)
* chore: get upload filename from request body * use info from request body
This commit is contained in:
parent
5cd186d3d4
commit
176656b5f4
5 changed files with 35 additions and 7 deletions
|
|
@ -444,6 +444,7 @@ export type AssetMediaCreateDto = {
|
|||
duration?: string;
|
||||
fileCreatedAt: string;
|
||||
fileModifiedAt: string;
|
||||
filename?: string;
|
||||
isFavorite?: boolean;
|
||||
livePhotoVideoId?: string;
|
||||
sidecarData?: Blob;
|
||||
|
|
@ -510,6 +511,7 @@ export type AssetMediaReplaceDto = {
|
|||
duration?: string;
|
||||
fileCreatedAt: string;
|
||||
fileModifiedAt: string;
|
||||
filename?: string;
|
||||
};
|
||||
export type SignUpDto = {
|
||||
email: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue