Wrapping up for the day. The new launcher is partially working. There is a lot of work to do.

This commit is contained in:
Scott Idem
2024-08-02 19:11:35 -04:00
parent 352639e702
commit 0d34f81fa7
16 changed files with 2118 additions and 213 deletions

View File

@@ -20,13 +20,17 @@ export async function load({ params, parent }) { // route
if (!person_id) {
console.log(`ae core person [person_id] +page.ts: The person_id was not found in the params!!!`);
error(404, {
message: 'Session not found'
message: 'Person not found'
});
}
ae_acct.slct.person_id = person_id;
let load_person_obj = await core_func.handle_load_ae_obj_id__person({api_cfg: ae_acct.api, person_id: person_id, try_cache: false});
let load_person_obj = await core_func.handle_load_ae_obj_id__person({
api_cfg: ae_acct.api,
person_id: person_id,
try_cache: false
});
ae_acct.slct.person_obj = load_person_obj;