made playlog table dynamic

This commit is contained in:
polaris
2024-06-29 14:43:11 -04:00
parent 30825e20f1
commit c784e8808e
14 changed files with 218 additions and 46 deletions

View File

@ -18,6 +18,7 @@ export const lucia = new Lucia(adapter, {
role: attributes.role,
username: attributes.username,
accessCode: attributes.accessCode,
UserId: attributes.UserId
};
},
});
@ -34,4 +35,5 @@ interface DatabaseUserAttributes {
role: string;
username: string;
accessCode: string;
UserId: number;
}