add date of birth to user

This commit is contained in:
Flam3rboy
2021-04-06 04:30:24 +02:00
parent 770b07400e
commit 6fbfcac1ba
4 changed files with 5 additions and 1 deletions
+2
View File
@@ -13,6 +13,7 @@ export interface User {
mobile: boolean; // if the user has mobile app installed
premium: boolean; // if user bought nitro
premium_type: number; // nitro level
date_of_birth: Date;
bot: boolean; // if user is bot
system: boolean; // shouldn't be used, the api sents this field type true, if the genetaed message comes from a system generated author
nsfw_allowed: boolean; // if the user is older than 18 (resp. Config)
@@ -126,6 +127,7 @@ export const UserSchema = new Schema({
desktop: Boolean,
mobile: Boolean,
premium: Boolean,
date_of_birth: Date,
premium_type: Number,
bot: Boolean,
system: Boolean,