From 366870b2862d31bfa6d7f63f257e095a80ab495c Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 5 Jun 2020 13:30:01 -0400 Subject: [PATCH] simplified support to just be a string as first value (emoji) --- v2/proto/support.proto | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/v2/proto/support.proto b/v2/proto/support.proto index 928d51a..5fa7e79 100644 --- a/v2/proto/support.proto +++ b/v2/proto/support.proto @@ -3,12 +3,16 @@ syntax = "proto3"; package pb; message Support { - oneof type { - Edit edit = 1; - Comment comment = 2; - } + string emoji = 1; + /* + oneof type { + Edit edit = 1; + Comment comment = 2; + } + */ } +/* message Edit { string key = 1; string value = 2; @@ -17,3 +21,4 @@ message Edit { message Comment { string body = 1; } +*/