mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-02-04 08:06:56 +00:00
/api/file/[id]/thumbnail, /api/file/[id]/thumbnail/download, /api/file/[id]/thumbnail/upload Endpoint 구현
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { ColumnType, Generated } from "kysely";
|
||||
import type { Generated } from "kysely";
|
||||
|
||||
interface ThumbnailTable {
|
||||
id: Generated<number>;
|
||||
@@ -6,7 +6,7 @@ interface ThumbnailTable {
|
||||
file_id: number | null;
|
||||
category_id: number | null;
|
||||
path: string;
|
||||
created_at: ColumnType<Date, Date, never>;
|
||||
created_at: Date;
|
||||
encrypted_content_iv: string; // Base64
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user