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

@@ -20,6 +20,7 @@ export const actions: Actions = {
let username = formData.get("username");
let firstName = formData.get("first_name");
let lastName = formData.get("last_name");
let icon = formData.get("icon");
let password = formData.get("password");
@@ -32,6 +33,15 @@ export const actions: Actions = {
};
}
if (icon.length > 1) {
return {
status: 400,
body: {
message: "Icon must be a single character"
}
};
}
if (password) {
let hashedPassword = await new Argon2id().hash(password);
console.log(hashedPassword)
@@ -47,6 +57,7 @@ export const actions: Actions = {
username: username,
first_name: firstName,
last_name: lastName,
icon: icon
})
.where(eq(userTable.id, userId));