Use default in the model instead of creating it manually

This commit is contained in:
Lee
2022-11-17 11:35:46 +00:00
parent a44ca7d8af
commit 6a81b0c781
2 changed files with 16 additions and 11 deletions

View File

@ -46,13 +46,6 @@ export async function createUser(username, password) {
password: hashPassword(salt, password),
salt: salt,
uploadKey: randomString(16),
discordEmbed: {
embed: true,
title: "{id}.{ext}",
description: null,
color: "0063EB",
},
});
user.save();
} catch (e) {