-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When remotely deleting messages, keep metadata around until user loca…
…lly deletes message
- Loading branch information
Showing
4 changed files
with
120 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,6 +101,7 @@ message StoredMessage { | |
DeliveryStatus status = 12; // for outgoing messages, the status of its sending and delivery | ||
int64 firstViewedAt = 13; // the unix timestamp in milliseconds of when this message was first viewed on the current device | ||
int64 disappearAt = 14; // the unix timestamp in milliseconds of when this message will automatically disappear | ||
bool deletedBySender = 16; // message was deleted by sender, most data will be null but metadata remains | ||
This comment has been minimized.
Sorry, something went wrong.
oxtoacart
Author
Contributor
|
||
} | ||
|
||
// A reaction to a message | ||
|
drive-by linter fix