summary refs log tree commit diff
path: root/util
diff options
context:
space:
mode:
authorErkin Alp Güney <erkinalp9035@gmail.com>2022-03-04 22:00:59 +0300
committerGitHub <noreply@github.com>2022-03-04 22:00:59 +0300
commit7cce144eabe89f1fc0e4ff9cc4deef68b8a077c3 (patch)
tree22310c9e7a1071c371d8eb5e53abd7e3ce19c012 /util
parentAdd nan to dependencies (diff)
downloadserver-7cce144eabe89f1fc0e4ff9cc4deef68b8a077c3.tar.xz
Initial work on public read receipts
Progress on #416
Diffstat (limited to 'util')
-rw-r--r--util/src/entities/ReadState.ts6
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;