From bca12151b7f8d45c6534fbcda0932e16278d9f51 Mon Sep 17 00:00:00 2001 From: Peter KW Date: Wed, 20 Mar 2024 18:36:45 +0100 Subject: [PATCH] Added new type to match fetch for project members --- frontend/src/Types/goTypes.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/Types/goTypes.ts b/frontend/src/Types/goTypes.ts index 43bb35f..5f9cbb4 100644 --- a/frontend/src/Types/goTypes.ts +++ b/frontend/src/Types/goTypes.ts @@ -132,6 +132,11 @@ export interface PublicUser { userId: string; username: string; } + +export interface UserProjectMember { + Username: string; + UserRole: string; +} /** * wrapper type for token */