Add discord(twitter) embed settings to the user model
This commit is contained in:
parent
f9de76328f
commit
2679fc31c0
@ -10,6 +10,14 @@ const schema = new Schema({
|
|||||||
salt: String, // The salt the password was hashed with
|
salt: String, // The salt the password was hashed with
|
||||||
uploadKey: String, // The users upload key for ShareX
|
uploadKey: String, // The users upload key for ShareX
|
||||||
lastLoginDate: Date, // The last time the user logged in
|
lastLoginDate: Date, // The last time the user logged in
|
||||||
|
|
||||||
|
// User Settings
|
||||||
|
discordEmbed: {
|
||||||
|
embed: Boolean,
|
||||||
|
title: String,
|
||||||
|
description: String,
|
||||||
|
color: String,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export default mongoose.models.User || mongoose.model("User", schema);
|
export default mongoose.models.User || mongoose.model("User", schema);
|
||||||
|
Reference in New Issue
Block a user