From 691d734c50cd9b5211598d35919c5536cebcdd58 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 16 Mar 2022 21:12:08 +0100 Subject: [PATCH] Update backend/src/seeds/factory/creation.ts Co-authored-by: Ulf Gebhardt --- backend/src/seeds/factory/creation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/seeds/factory/creation.ts b/backend/src/seeds/factory/creation.ts index 52b63b193..92bc224f6 100644 --- a/backend/src/seeds/factory/creation.ts +++ b/backend/src/seeds/factory/creation.ts @@ -15,7 +15,7 @@ export const creationFactory = async ( ): Promise => { const { mutate, query } = client - // get Peter Lustig + // get Peter Lustig's user id const peterLustig = await User.findOneOrFail({ where: { email: 'peter@lustig.de' } }) const variables = { ...creation, moderator: peterLustig.id }