From bf05bc0be78f3fb9bd1d993b08f777cdd6aa95f6 Mon Sep 17 00:00:00 2001 From: Jason Streifling Date: Tue, 10 Oct 2023 18:52:29 +0200 Subject: [PATCH] Der Participant muss nicht das ganze Questionaire kennen, nur die UUID --- packages/types/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/types/types.go b/packages/types/types.go index 9e1542d..63492c9 100644 --- a/packages/types/types.go +++ b/packages/types/types.go @@ -27,8 +27,8 @@ type Questionaire struct { type Participant struct { ID int64 Person - Company string - Questionaire Questionaire + Company string + QuestionaireUUID string } type Briefing struct {