Add user icon field and update version number

This commit is contained in:
Sean Morley
2024-04-11 13:46:41 +00:00
parent a10f7485e0
commit 7decfd61e8
9 changed files with 249 additions and 3 deletions

View File

@@ -19,6 +19,7 @@ export const lucia = new Lucia(adapter, {
id: attributes.id,
first_name: attributes.first_name,
last_name: attributes.last_name,
icon: attributes.icon,
};
},
});
@@ -35,5 +36,6 @@ export interface DatabaseUser {
username: string;
first_name: string;
last_name: string;
icon: string;
hashed_password: string;
}