Track revisions and activity on the item level

This commit is contained in:
rijkvanzanten
2020-07-09 12:02:53 -04:00
parent 0b096bea45
commit d9ffd7f8de
11 changed files with 167 additions and 69 deletions

View File

@@ -0,0 +1,7 @@
export type Accountability = {
ip?: string;
userAgent?: string;
user?: string;
parent?: number;
};

View File

@@ -2,4 +2,5 @@
export type File = {
id: string; // uuid
filename_disk: string;
storage: string;
};