Trying to wrap up for the day.
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user