From aa28b78c3066a4b600c3f4de326c9037f4b050fe Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Wed, 2 Oct 2024 11:04:44 +0200 Subject: [PATCH] chore: remove the projects? Property from ICreateGroupModel (#8246) This property does not seem to be used anywhere, so we can remove it. Can't find any references in code here or in enterprise. Let's try it and see if it breaks. --- src/lib/types/group.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/types/group.ts b/src/lib/types/group.ts index d75944f736..5dc2b7002c 100644 --- a/src/lib/types/group.ts +++ b/src/lib/types/group.ts @@ -36,7 +36,6 @@ export interface IGroupModel extends IGroup { export interface ICreateGroupModel extends Omit { users?: ICreateGroupUserModel[]; - projects?: string[]; } export interface IGroupProject {