@@ -363,6 +363,7 @@ const startTestMigration = async (req: Request): Promise<any> => {
363363 await wordpressService ?. getAllTags ( file_path , packagePath , project ?. current_test_stack_id , projectId , contentTypes , project ?. mapperKeys , project ?. stackDetails ?. master_locale , project )
364364 await wordpressService ?. getAllCategories ( file_path , packagePath , project ?. current_test_stack_id , projectId , contentTypes , project ?. mapperKeys , project ?. stackDetails ?. master_locale , project )
365365 await wordpressService ?. extractPosts ( packagePath , project ?. current_test_stack_id , projectId , contentTypes , project ?. mapperKeys , project ?. stackDetails ?. master_locale , project )
366+ await wordpressService ?. extractPages ( packagePath , project ?. current_test_stack_id , projectId , contentTypes , project ?. mapperKeys , project ?. stackDetails ?. master_locale , project )
366367 await wordpressService ?. extractGlobalFields ( project ?. current_test_stack_id , projectId )
367368 await wordpressService ?. createVersionFile ( project ?. current_test_stack_id , projectId ) ;
368369 }
@@ -583,6 +584,7 @@ const startMigration = async (req: Request): Promise<any> => {
583584 await wordpressService ?. getAllTags ( file_path , packagePath , project ?. destination_stack_id , projectId , contentTypes , project ?. mapperKeys , project ?. stackDetails ?. master_locale , project )
584585 await wordpressService ?. getAllCategories ( file_path , packagePath , project ?. destination_stack_id , projectId , contentTypes , project ?. mapperKeys , project ?. stackDetails ?. master_locale , project )
585586 await wordpressService ?. extractPosts ( packagePath , project ?. destination_stack_id , projectId , contentTypes , project ?. mapperKeys , project ?. stackDetails ?. master_locale , project )
587+ await wordpressService ?. extractPages ( packagePath , project ?. destination_stack_id , projectId , contentTypes , project ?. mapperKeys , project ?. stackDetails ?. master_locale , project )
586588 await wordpressService ?. extractGlobalFields ( project ?. destination_stack_id , projectId )
587589 await wordpressService ?. createVersionFile ( project ?. destination_stack_id , projectId ) ;
588590 }
0 commit comments