Release polls behind feature flag.

This commit is contained in:
Michelle Tang
2025-10-01 12:46:37 -04:00
parent 67a693107e
commit b8e4ffb5ae
84 changed files with 4164 additions and 102 deletions

View File

@@ -532,6 +532,7 @@ message MessageExtras {
signalservice.GroupContext gv1Context = 2;
ProfileChangeDetails profileChangeDetails = 3;
PaymentTombstone paymentTombstone = 4;
PollTerminate pollTerminate = 5;
}
}
@@ -546,6 +547,12 @@ message PaymentTombstone {
CryptoValue fee = 3;
}
message PollTerminate {
string question = 1;
uint64 messageId = 2;
uint64 targetTimestamp = 3;
}
message LocalRegistrationMetadata {
bytes aciIdentityKeyPair = 1;
bytes aciSignedPreKey = 2;

View File

@@ -243,3 +243,11 @@ message BackupDeleteJobData {
message SecondRoundFixupSendJobData {
uint64 messageId = 1;
}
message PollVoteJobData {
uint64 messageId = 1;
repeated uint64 recipients = 2;
uint32 initialRecipientCount = 3;
uint32 voteCount = 4;
bool isRemoval = 5;
}