Compare commits

..

4 Commits

Author SHA1 Message Date
Philipinho 362341cc6c sync 2026-04-14 16:18:02 +01:00
Philipinho 46a3ca4112 sync 2026-04-14 16:11:33 +01:00
Philipinho 4ec2e458f8 feat: pdf export queue 2026-04-14 16:01:38 +01:00
Philipinho c802d29b85 feat(ee): server side PDF export 2026-04-14 12:50:00 +01:00
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "client", "name": "client",
"private": true, "private": true,
"version": "0.80.0", "version": "0.71.1",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "tsc && vite build", "build": "tsc && vite build",
@@ -24,7 +24,7 @@ export default function PdfRenderPage() {
return; return;
} }
fetch('/api/pdf-export/render', { fetch('/api/pdf/render', {
method: 'POST', method: 'POST',
headers: { 'Content-Type': 'application/json' }, headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ pageId, token }), body: JSON.stringify({ pageId, token }),
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "server", "name": "server",
"version": "0.80.0", "version": "0.71.1",
"description": "", "description": "",
"author": "", "author": "",
"private": true, "private": true,
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "docmost", "name": "docmost",
"homepage": "https://docmost.com", "homepage": "https://docmost.com",
"version": "0.80.0", "version": "0.71.1",
"private": true, "private": true,
"scripts": { "scripts": {
"build": "nx run-many -t build", "build": "nx run-many -t build",