Clean up before I wrap up for the day.

This commit is contained in:
Scott Idem
2024-09-25 18:54:45 -04:00
parent 32ca117b11
commit 702da83ce5
4 changed files with 9 additions and 5 deletions

View File

@@ -69,7 +69,6 @@ export async function load_ae_obj_id__archive(
api_cfg: api_cfg,
for_obj_type: 'archive',
for_obj_id: archive_id,
inc_content_li: inc_content_li,
params: {qry__enabled: 'all', qry__limit: 25},
try_cache: try_cache,
log_lvl: log_lvl

View File

@@ -589,8 +589,11 @@ export function db_save_ae_obj_li__post(
account_id: obj.account_id_random,
title: null|string;
content?: null|string;
topic_id: obj.topic_id,
topic: obj.topic,
title: obj.title,
content: obj.content,
anonymous: obj.anonymous,
full_name: obj.full_name,

View File

@@ -110,6 +110,8 @@ export interface Archive_Content {
updated_on?: null|Date;
// Additional fields for convenience (database views)
archive_code?: null|string;
archive_name?: null|string;
}

View File

@@ -19,8 +19,8 @@ export interface Post {
external_person_id?: null|string; // For IDAA this is the Novi UUID
user_id?: null|string;
topic_id: string;
topic: string; // or topic_name?
topic_id?: string;
topic?: string; // or topic_name?
// name: null|string;
// summary?: null|string;