From 9383eeb53a778a26b2e0d2fb02f8aa753019d2d6 Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Sun, 6 Jun 2021 17:56:12 +0200 Subject: [PATCH] fix: the seed command handles the new aliases Signed-off-by: Philip Molares --- src/seed.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/seed.ts b/src/seed.ts index 3275640e1..49bf6c358 100644 --- a/src/seed.ts +++ b/src/seed.ts @@ -12,6 +12,7 @@ import { HistoryEntry } from './history/history-entry.entity'; import { Identity } from './identity/identity.entity'; import { ProviderType } from './identity/provider-type.enum'; import { MediaUpload } from './media/media-upload.entity'; +import { Alias } from './notes/alias.entity'; import { Note } from './notes/note.entity'; import { Tag } from './notes/tag.entity'; import { NoteGroupPermission } from './permissions/note-group-permission.entity'; @@ -43,6 +44,7 @@ createConnection({ Identity, Author, Session, + Alias, ], synchronize: true, logging: false, @@ -89,12 +91,14 @@ createConnection({ if (!foundUsers) { throw new Error('Could not find freshly seeded users. Aborting.'); } - const foundNotes = await connection.manager.find(Note); + const foundNotes = await connection.manager.find(Note, { + relations: ['aliases'], + }); if (!foundNotes) { throw new Error('Could not find freshly seeded notes. Aborting.'); } for (const note of foundNotes) { - if (!note.alias) { + if (!note.aliases[0]) { throw new Error( 'Could not find alias of freshly seeded notes. Aborting.', ); @@ -106,7 +110,7 @@ createConnection({ ); } for (const note of foundNotes) { - console.log(`Created Note '${note.alias ?? ''}'`); + console.log(`Created Note '${note.aliases[0].name ?? ''}'`); } for (const user of foundUsers) { for (const note of foundNotes) { @@ -114,7 +118,7 @@ createConnection({ await connection.manager.save(historyEntry); console.log( `Created HistoryEntry for user '${user.userName}' and note '${ - note.alias ?? '' + note.aliases[0].name ?? '' }'`, ); }