Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
client
Commits
87eb4045
Commit
87eb4045
authored
2 years ago
by
Benjamin Wenger
Browse files
Options
Downloads
Patches
Plain Diff
added better comments to text.proto and reran protoc
parent
87062fc9
No related branches found
No related tags found
5 merge requests
!510
Release
,
!419
rewrote the health tracker to both consider if there are waiting rounds and...
,
!371
[Channel RSAtoPrivate] Implement Reverse Asymmetric in Client/Broadcast
,
!354
Channels impl
,
!340
Project/channels
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
channels/text.proto
+5
-0
5 additions, 0 deletions
channels/text.proto
with
5 additions
and
0 deletions
channels/text.proto
+
5
−
0
View file @
87eb4045
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment