Trying to wrap up for the day.

This commit is contained in:
Scott Idem
2024-06-12 18:58:06 -04:00
parent b368abc91a
commit 84f6f1eda8
6 changed files with 122 additions and 27 deletions

View File

@@ -26,7 +26,7 @@ export let get_object = async function get_object(
as_list=false,
// The task_id value should be a random string that is unique to the task. This is used to identify the task in the message event.
task_id=crypto.randomUUID(),
log_lvl=1
log_lvl=0
} : {
api_cfg: any,
endpoint: string,

View File

@@ -296,6 +296,7 @@ export interface Presenter {
export class MySubClassedDexie extends Dexie {
// 'badges' is added by dexie when declaring the stores()
// We just tell the typing system this is the case
events!: Table<Event>;
badges!: Table<Badge>;
exhibits!: Table<Exhibit>;
exhibit_tracking!: Table<Exhibit_tracking>;
@@ -304,7 +305,8 @@ export class MySubClassedDexie extends Dexie {
super('ae_events_db');
this.version(1).stores({
events: `
id_random, code, account_id_random,
id_random, event_id_random,
code, account_id_random,
conference, type,
name, summary, description,
start_datetime, end_datetime,