Add internal pre-alpha support for receiving reactions.

This commit is contained in:
Alex Hart
2019-12-03 17:57:21 -04:00
committed by Greyson Parrelli
parent a8d826020d
commit bceb69b284
105 changed files with 3202 additions and 255 deletions
+24
View File
@@ -0,0 +1,24 @@
/**
* Copyright (C) 2014-2016 Open Whisper Systems
*
* Licensed according to the LICENSE file in this repository.
*/
syntax = "proto3";
package signal;
option java_package = "org.thoughtcrime.securesms.database.model";
option java_outer_classname = "DatabaseProtos";
message ReactionList {
message Reaction {
string emoji = 1;
uint64 author = 2;
uint64 sentTime = 3;
uint64 receivedTime = 4;
}
repeated Reaction reactions = 1;
}