fix username spelling from userName

Signed-off-by: Yannick Bungers <git@innay.de>
This commit is contained in:
Yannick Bungers 2021-10-13 22:28:10 +02:00 committed by David Mehren
parent be27686610
commit 40103cb397
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
23 changed files with 89 additions and 91 deletions

View file

@ -106,7 +106,7 @@ createConnection({
}
for (const user of foundUsers) {
console.log(
`Created User '${user.userName}' with password '${password}'`,
`Created User '${user.username}' with password '${password}'`,
);
}
for (const note of foundNotes) {
@ -117,7 +117,7 @@ createConnection({
const historyEntry = HistoryEntry.create(user, note);
await connection.manager.save(historyEntry);
console.log(
`Created HistoryEntry for user '${user.userName}' and note '${
`Created HistoryEntry for user '${user.username}' and note '${
note.aliases[0].name ?? ''
}'`,
);