파일 페이지에 다운로드 및 폴더로 이동 메뉴 추가

This commit is contained in:
static
2025-12-27 02:37:56 +09:00
parent a9da8435cb
commit 9eb67d5877
4 changed files with 88 additions and 11 deletions

View File

@@ -40,6 +40,7 @@ export type DirectoryInfo =
export interface FileInfo {
id: number;
parentId: DirectoryId;
dataKey?: CryptoKey;
dataKeyVersion?: Date;
contentType: string;
@@ -199,6 +200,7 @@ const fetchFileInfoFromServer = async (
info.set({
id,
parentId: metadata.parent,
dataKey,
dataKeyVersion: new Date(metadata.dekVersion),
contentType: metadata.contentType,