mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-21 09:20:19 +01:00
Setup infra for better archive upload progress tracking.
This commit is contained in:
@@ -14,4 +14,17 @@ option java_package = "org.thoughtcrime.securesms.keyvalue.protos";
|
||||
message LeastActiveLinkedDevice {
|
||||
string name = 1;
|
||||
uint64 lastActiveTimestamp = 2;
|
||||
}
|
||||
|
||||
message ArchiveUploadProgressState {
|
||||
enum State {
|
||||
None = 0;
|
||||
BackingUpMessages = 1;
|
||||
UploadingMessages = 2;
|
||||
UploadingAttachments = 3;
|
||||
}
|
||||
|
||||
State state = 1;
|
||||
uint64 completedAttachments = 2;
|
||||
uint64 totalAttachments = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user