diff options
author | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-03-04 22:00:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 22:00:59 +0300 |
commit | 43b02a4da5331dd710e7e56ae25ba0abbe726f9a (patch) | |
tree | bb0520fac60ac717ffbf88a835a1f7981213e558 /util/src/entities | |
parent | Add nan to dependencies (diff) | |
download | server-43b02a4da5331dd710e7e56ae25ba0abbe726f9a.tar.xz |
Initial work on public read receipts
Progress on #416
Diffstat (limited to 'util/src/entities')
-rw-r--r-- | util/src/entities/ReadState.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/src/entities/ReadState.ts b/util/src/entities/ReadState.ts index ebef89be..885b702e 100644 --- a/util/src/entities/ReadState.ts +++ b/util/src/entities/ReadState.ts @@ -33,6 +33,12 @@ export class ReadState extends BaseClass { @Column({ nullable: true }) last_message_id: string; + + @Column({ nullable: true }) + public_ack: string; + + @Column({ nullable: true }) + notifications_cursor: string; @Column({ nullable: true }) last_pin_timestamp?: Date; |