Added 'created' attribute to files and pages

This commit is contained in:
Zef Hemel
2023-11-03 09:38:04 +01:00
parent 3f1aa45b5d
commit 509683c537
16 changed files with 39 additions and 2 deletions
+3
View File
@@ -1,5 +1,6 @@
export type FileMeta = {
name: string;
created: number;
lastModified: number;
contentType: string;
size: number;
@@ -9,6 +10,7 @@ export type FileMeta = {
export type PageMeta = {
name: string;
created: number;
lastModified: number;
lastOpened?: number;
perm: "ro" | "rw";
@@ -17,6 +19,7 @@ export type PageMeta = {
export type AttachmentMeta = {
name: string;
contentType: string;
created: number;
lastModified: number;
size: number;
perm: "ro" | "rw";