Add missing entries to UserSettings
This commit is contained in:
parent
6be688d261
commit
2d8238f286
@ -63,6 +63,9 @@ export class UserSettings extends BaseClassWithoutId {
|
|||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
explicit_content_filter: number = 0;
|
explicit_content_filter: number = 0;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
friend_discovery_flags: number = 0;
|
||||||
|
|
||||||
@Column({ nullable: true, type: "simple-json" })
|
@Column({ nullable: true, type: "simple-json" })
|
||||||
friend_source_flags: FriendSourceFlags = { all: true };
|
friend_source_flags: FriendSourceFlags = { all: true };
|
||||||
|
|
||||||
@ -116,6 +119,10 @@ export class UserSettings extends BaseClassWithoutId {
|
|||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
timezone_offset: number = 0; // e.g -60
|
timezone_offset: number = 0; // e.g -60
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
view_nsfw_guilds: boolean = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface CustomStatus {
|
interface CustomStatus {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user