diff --git a/src/routes/blog.js b/src/routes/blog.js index 7c888db..a3f5836 100644 --- a/src/routes/blog.js +++ b/src/routes/blog.js @@ -88,11 +88,9 @@ export const blogRoutes = (fastify, _, done) => { queue = await db.select({ id: articlesTable.id, title: articlesTable.title, - seo_slug: articlesTable.seo_slug, - views: articlesTable.views, - is_public: articlesTable.is_public, created_at: articlesTable.created_at, - status: articlesTable.status + status: articlesTable.status, + source_id: articlesTable.source_video_id }).from(articlesTable).where(and(eq(articlesTable.site_id, site.id), not(eq(articlesTable.status, "done")))); }