Start work on chat mentions
This commit is contained in:
parent
660021f5e5
commit
ee87ac2f9b
9 changed files with 271 additions and 47 deletions
|
@ -178,7 +178,8 @@ message Envelope {
|
|||
NewNotification new_notification = 148;
|
||||
GetNotifications get_notifications = 149;
|
||||
GetNotificationsResponse get_notifications_response = 150;
|
||||
DeleteNotification delete_notification = 151; // Current max
|
||||
DeleteNotification delete_notification = 151;
|
||||
MarkNotificationsRead mark_notifications_read = 152; // Current max
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1595,6 +1596,10 @@ message DeleteNotification {
|
|||
uint64 notification_id = 1;
|
||||
}
|
||||
|
||||
message MarkNotificationsRead {
|
||||
repeated uint64 notification_ids = 1;
|
||||
}
|
||||
|
||||
message Notification {
|
||||
uint64 id = 1;
|
||||
uint64 timestamp = 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue