1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-06 10:52:31 +01:00

Initial work on public read receipts

Progress on #416
This commit is contained in:
Erkin Alp Güney 2022-03-04 22:00:59 +03:00 committed by GitHub
parent dc9ec4f093
commit 43b02a4da5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,12 @@ export class ReadState extends BaseClass {
@Column({ nullable: true }) @Column({ nullable: true })
last_message_id: string; last_message_id: string;
@Column({ nullable: true })
public_ack: string;
@Column({ nullable: true })
notifications_cursor: string;
@Column({ nullable: true }) @Column({ nullable: true })
last_pin_timestamp?: Date; last_pin_timestamp?: Date;