Add import functionality for EPUB files: create ImportClient component and ModImportPage
Build and Push Reader Image / docker (push) Successful in 48s

This commit is contained in:
2026-04-30 01:54:08 +07:00
parent 19cca5b5d0
commit 3e8496cfeb
4 changed files with 235 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { requireModSessionUser } from "@/lib/server-auth"
import { ImportClient } from "./import-client"
export default async function ModImportPage() {
await requireModSessionUser()
return (
<div>
<h1 className="text-2xl font-bold mb-2">Import EPUB</h1>
<p className="text-muted-foreground mb-6">
Quản nguồn EPUB trên NAS, chạy convert, map chapter hoàn tất import.
</p>
<ImportClient />
</div>
)
}