From f49af4dcbac75a71af4b933f93e1d15fb4ee0035 Mon Sep 17 00:00:00 2001 From: Joakim Uddholm Date: Fri, 22 Sep 2023 15:19:23 +0200 Subject: [PATCH] fix: remove teams attribute from sampleUsers in default config --- config/default.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/config/default.ts b/config/default.ts index 88ec2b24..55ca2379 100644 --- a/config/default.ts +++ b/config/default.ts @@ -93,19 +93,16 @@ export const defaultConfig: GramConfiguration = { name: "User", sub: "user@localhost", // Must be the same as sub provided by IdentityProvider for authz to work mail: "user@localhost", - teams: [], }, { name: "Reviewer", sub: "reviewer@localhost", mail: "reviewer@localhost", - teams: [], }, { name: "Admin", sub: "admin@localhost", mail: "admin@localhost", - teams: [], }, ];