feat: Add user metadata changing display name and description with sync
Some checks failed
Queue Release Build / prepare (push) Successful in 27s
Deploy Web Apps / deploy (push) Failing after 4m58s
Queue Release Build / build-linux (push) Failing after 10m55s
Queue Release Build / build-windows (push) Successful in 16m14s
Queue Release Build / finalize (push) Has been skipped

This commit is contained in:
2026-04-17 22:04:18 +02:00
parent 3ba8a2c9eb
commit 180333dc35
34 changed files with 1165 additions and 119 deletions

View File

@@ -24,6 +24,12 @@ export class RoomMemberEntity {
@Column('text')
displayName!: string;
@Column('text', { nullable: true })
description!: string | null;
@Column('integer', { nullable: true })
profileUpdatedAt!: number | null;
@Column('text', { nullable: true })
avatarUrl!: string | null;

View File

@@ -18,6 +18,12 @@ export class UserEntity {
@Column('text', { nullable: true })
displayName!: string | null;
@Column('text', { nullable: true })
description!: string | null;
@Column('integer', { nullable: true })
profileUpdatedAt!: number | null;
@Column('text', { nullable: true })
avatarUrl!: string | null;