forked from jsnbuchanan/crowd-funder-for-time-pwa
make more adjustments to try and get logging to work
This commit is contained in:
@@ -6,6 +6,6 @@ export interface Contact {
|
||||
registered?: boolean;
|
||||
}
|
||||
|
||||
export const ContactsSchema = {
|
||||
export const ContactSchema = {
|
||||
contacts: "&did, name, publicKeyBase64, registered, seesMe",
|
||||
};
|
||||
|
||||
7
src/db/tables/logs.ts
Normal file
7
src/db/tables/logs.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface Log {
|
||||
message: string;
|
||||
}
|
||||
|
||||
export const LogSchema = {
|
||||
logs: "message",
|
||||
};
|
||||
Reference in New Issue
Block a user