From 1f19a496eb45bcc699f2cc0802713c4d8b64b335 Mon Sep 17 00:00:00 2001 From: Jan-Lukas Wynen Date: Tue, 13 Jun 2023 11:31:01 +0200 Subject: [PATCH] Add default users with shared group --- src/config/configuration.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/config/configuration.ts b/src/config/configuration.ts index f54acc1de..62dca8624 100644 --- a/src/config/configuration.ts +++ b/src/config/configuration.ts @@ -84,6 +84,20 @@ const configuration = () => { role: "group4", global: false, }, + { + username: "user5.1", + email: "user5.1@your.site", + password: "359a5fda99bfe5dbc42ee9b3ede77fb7", + role: "group5", + global: false, + }, + { + username: "user5.2", + email: "user5.2@your.site", + password: "f3ebd2e4def95db59ef95ee32ef45242", + role: "group5", + global: false, + }, ], httpMaxRedirects: process.env.HTTP_MAX_REDIRECTS ?? 5, httpTimeOut: process.env.HTTP_TIMEOUT ?? 5000,