thingies
This commit is contained in:
@ -26,7 +26,7 @@ class UserService {
|
||||
const hashedPassword = await bcrypt.hash(password, 10);
|
||||
const newUser = await UserRepository.create(username, hashedPassword);
|
||||
|
||||
// @TODO: Create a new character for the user
|
||||
// @TODO: Remove this logic from here and move it to the character creation part wherever that'll be
|
||||
const newCharacter = await CharacterRepository.create(newUser.id, newUser.username);
|
||||
|
||||
return newUser
|
||||
|
Reference in New Issue
Block a user