From 15ccd2394fe3d5b6f91ec3eb54c82a6546d2abf9 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 1 Jan 2024 16:15:02 -0700 Subject: [PATCH] add missing 'date' to log interface --- project.task.yaml | 1 + src/db/tables/logs.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/project.task.yaml b/project.task.yaml index 1eefe77..1ebacae 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -35,6 +35,7 @@ tasks: - 04 allow user to download chains of VCs, mine + ones I can see about me from others - add VC confirmation +- record donations vs gives - make server endpoint for full English description of limits - make identicons for contacts into more-memorable faces (and maybe change project identicons, too) - 02 watch for the service worker activation before showing the button to turn on notifications diff --git a/src/db/tables/logs.ts b/src/db/tables/logs.ts index b3c1b0d..057a6cb 100644 --- a/src/db/tables/logs.ts +++ b/src/db/tables/logs.ts @@ -1,4 +1,5 @@ export interface Log { + date: string; message: string; }