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 | 7cce144eabe89f1fc0e4ff9cc4deef68b8a077c3 (patch) | |
tree | 22310c9e7a1071c371d8eb5e53abd7e3ce19c012 /util/src/entities/ReadState.ts | |
parent | Add nan to dependencies (diff) | |
download | server-7cce144eabe89f1fc0e4ff9cc4deef68b8a077c3.tar.xz |
Initial work on public read receipts
Progress on #416
Diffstat (limited to 'util/src/entities/ReadState.ts')
-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; |