From 16a28ac5dccca8bb2378812594d4609309daa15a Mon Sep 17 00:00:00 2001 From: Dakota Brink Date: Mon, 18 Nov 2024 14:08:08 -0500 Subject: [PATCH] comments --- proto/mls/message_contents/content.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/mls/message_contents/content.proto b/proto/mls/message_contents/content.proto index 3996b29..b47773f 100644 --- a/proto/mls/message_contents/content.proto +++ b/proto/mls/message_contents/content.proto @@ -123,6 +123,7 @@ message ConsentUpdate { string entity = 3; } +// The type of entity the user is consenting to enum ConsentEntityType { CONSENT_ENTITY_TYPE_UNSPECIFIED = 0; CONSENT_ENTITY_TYPE_CONVERSATION_ID = 1; @@ -130,6 +131,7 @@ enum ConsentEntityType { CONSENT_ENTITY_TYPE_ADDRESS = 3; } +// Possible states of consent enum ConsentState { CONSENT_STATE_UNSPECIFIED = 0; CONSENT_STATE_ALLOWED = 1;