fix: add spaceId

This commit is contained in:
Philipinho 2024-11-30 20:29:13 +00:00
parent a37d558bac
commit a25cf84671
2 changed files with 3 additions and 1 deletions

View File

@ -166,7 +166,7 @@ export class PageRepo {
.withRecursive('page_hierarchy', (db) => .withRecursive('page_hierarchy', (db) =>
db db
.selectFrom('pages') .selectFrom('pages')
.select(['id', 'slugId', 'title', 'icon', 'content', 'parentPageId']) .select(['id', 'slugId', 'title', 'icon', 'content', 'parentPageId', 'spaceId'])
.where('id', '=', parentPageId) .where('id', '=', parentPageId)
.unionAll((exp) => .unionAll((exp) =>
exp exp
@ -178,6 +178,7 @@ export class PageRepo {
'p.icon', 'p.icon',
'p.content', 'p.content',
'p.parentPageId', 'p.parentPageId',
'p.spaceId',
]) ])
.innerJoin('page_hierarchy as ph', 'p.parentPageId', 'ph.id'), .innerJoin('page_hierarchy as ph', 'p.parentPageId', 'ph.id'),
), ),

View File

@ -115,6 +115,7 @@ export class ExportService {
'pages.title', 'pages.title',
'pages.content', 'pages.content',
'pages.parentPageId', 'pages.parentPageId',
'pages.spaceId'
]) ])
.where('spaceId', '=', spaceId) .where('spaceId', '=', spaceId)
.execute(); .execute();