Skip to content
Snippets Groups Projects
Commit 87eb4045 authored by Benjamin Wenger's avatar Benjamin Wenger
Browse files

added better comments to text.proto and reran protoc

parent 87062fc9
No related branches found
No related tags found
5 merge requests!510Release,!419rewrote the health tracker to both consider if there are waiting rounds and...,!371[Channel RSAtoPrivate] Implement Reverse Asymmetric in Client/Broadcast,!354Channels impl,!340Project/channels
...@@ -10,12 +10,17 @@ syntax = "proto3"; ...@@ -10,12 +10,17 @@ syntax = "proto3";
package parse; package parse;
option go_package = "/channels"; option go_package = "/channels";
// CMIXChannelText is the payload for sending normal text messages to channels
// the replyMessageID is nil when it is not a reply
message CMIXChannelText { message CMIXChannelText {
uint32 version = 1; uint32 version = 1;
string text = 2; string text = 2;
bytes replyMessageID = 3; bytes replyMessageID = 3;
} }
// CMIXChannelReaction is the payload for reactions. The reaction must be a
// single emoji and the reactionMessageID must be non nil and a real message
// in the channel
message CMIXChannelReaction { message CMIXChannelReaction {
uint32 version = 1; uint32 version = 1;
string reaction = 2; string reaction = 2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment