Add /api/thumbnail/[id]

This commit is contained in:
2023-06-23 11:09:23 +08:00
parent 4e9fa3632b
commit 19afc034dd
6 changed files with 189 additions and 4 deletions

8
server/status.ts Normal file
View File

@@ -0,0 +1,8 @@
export type StatusData = {
ffmpeg_binary_enabled: boolean;
meilisearch_enabled: boolean;
meilisearch?: {
host: string;
key: string;
};
};