Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/routes/labNotesRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ export function registerLabNotesRoutes(app: any, db: Database.Database) {
id, slug, locale, type, status,
title, subtitle, summary, excerpt,
department_id, dept, shadow_density, safer_landing, read_time_minutes,
published_at, created_at, updated_at, card_style
published_at, created_at, updated_at, card_style,
author_name, author_kind
FROM v_lab_notes
WHERE status = 'published'
${typeClause}
Expand All @@ -49,7 +50,8 @@ export function registerLabNotesRoutes(app: any, db: Database.Database) {
id, slug, locale, type, status,
title, subtitle, summary, excerpt,
department_id, dept, shadow_density, safer_landing, read_time_minutes,
published_at, created_at, updated_at, card_style
published_at, created_at, updated_at, card_style,
author_name, author_kind
FROM v_lab_notes
WHERE locale = ?
AND status = 'published'
Expand Down Expand Up @@ -102,6 +104,7 @@ export function registerLabNotesRoutes(app: any, db: Database.Database) {
department_id, dept, shadow_density, coherence_score,
safer_landing, read_time_minutes,
published_at, created_at, updated_at, card_style,
author_name, author_kind,
content_markdown
FROM v_lab_notes
WHERE slug = ?
Expand Down
Loading