parent
66ff46cc84
commit
d8632c9814
|
@ -62,6 +62,7 @@ export async function getFiles(photos: IPhoto[]): Promise<IFileInfo[]> {
|
|||
mime: photo.mimetype,
|
||||
hasPreview: true,
|
||||
etag: photo.etag,
|
||||
permissions: "RWD",
|
||||
} as IFileInfo;
|
||||
})
|
||||
);
|
||||
|
|
|
@ -19,6 +19,8 @@ export type IFileInfo = {
|
|||
flag?: number;
|
||||
/** MIME type of file */
|
||||
mime?: string;
|
||||
/** WebDAV permissions string */
|
||||
permissions?: string;
|
||||
};
|
||||
|
||||
export type IDay = {
|
||||
|
|
Loading…
Reference in New Issue