From b3bde5cd09603c8e21e47824dbf87da14fd67eb0 Mon Sep 17 00:00:00 2001 From: Sinh Date: Fri, 6 Oct 2023 16:39:40 +0700 Subject: [PATCH] update communication model --- model/communication_request.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/model/communication_request.go b/model/communication_request.go index eb64ef2..23b1b50 100644 --- a/model/communication_request.go +++ b/model/communication_request.go @@ -5,6 +5,9 @@ type CommunicationRequestHttp struct { ResponseImmediately bool `json:"responseImmediately"` Authentication string `json:"authentication"` Payload HttpRequest `json:"payload"` + + // collection to store log data, will be prepended with log-, default it stored in logs collections + LogTarget string `json:"logTarget"` } // HttpRequest ...