feat: add nearby social services

This commit is contained in:
ANG-Server
2026-07-21 22:19:58 +08:00
parent 77302354ac
commit b5365751bb
17 changed files with 1266 additions and 121 deletions

View File

@@ -318,6 +318,13 @@ export class Users {
})
avatar_url: string;
@Column({
type: 'datetime',
nullable: true,
comment: '社区昵称最近修改时间'
})
nickname_updated_at?: Date | null;
/**
* 用户角色
*
@@ -494,4 +501,4 @@ export class Users {
*/
@OneToOne(() => ZulipAccounts, zulipAccount => zulipAccount.gameUser)
zulipAccount?: ZulipAccounts;
}
}