mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-04 23:55:40 +00:00
Extended settings
This commit is contained in:
@@ -163,6 +163,10 @@ export class User extends BaseClass {
|
||||
|
||||
@Column({ type: "simple-json", select: false })
|
||||
settings: UserSettings;
|
||||
|
||||
// workaround to prevent fossord-unaware clients from deleting settings not used by them
|
||||
@Column({ type: "simple-json", select: false })
|
||||
extended_settings: UserSettings;
|
||||
|
||||
@Column({ type: "simple-json" })
|
||||
notes: { [key: string]: string }; //key is ID of user
|
||||
@@ -273,6 +277,7 @@ export class User extends BaseClass {
|
||||
valid_tokens_since: new Date(),
|
||||
},
|
||||
settings: { ...defaultSettings, locale: language },
|
||||
extended_settings: {},
|
||||
fingerprints: [],
|
||||
notes: {},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user