Better (less) logging and other clean up

This commit is contained in:
Scott Idem
2024-06-24 15:51:30 -04:00
parent 0c4185f74c
commit c6b7c7e803
18 changed files with 1240 additions and 768 deletions

View File

@@ -1,12 +1,21 @@
/** @type {import('./$types').PageLoad} */
import { error } from '@sveltejs/kit';
import { events_func } from '$lib/ae_events_functions';
export async function load({ parent }) {
let log_lvl = 0;
let data = await parent();
let account_id = data.account_id;
if (!account_id) {
console.log(`events_pres_mgmt +page.ts: The account_id was not found in the data!!!`);
error(500, {
message: 'Not found'
});
}
let ae_acct = data[account_id];
// Should we limit these to event.conference = true?