assisweb 9.0.0 → 9.3.0
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +12 -1
- package/package.json +1 -1
package/index.js
CHANGED
@@ -18,7 +18,18 @@ const registerSchema = new mongoose.Schema({
|
|
18
18
|
})
|
19
19
|
|
20
20
|
|
21
|
-
|
21
|
+
const Accounts = mongoose.model("Accounts" , registerSchema)
|
22
|
+
|
23
|
+
const Nothing = new Accounts({
|
24
|
+
MyEmail: "a",
|
25
|
+
MyPass: "a",
|
26
|
+
MyName: "a",
|
27
|
+
MyDiscordID: "a",
|
28
|
+
DiscordBotToken: "a",
|
29
|
+
ChannelID: "a",
|
30
|
+
MyID:"a"
|
31
|
+
})
|
32
|
+
Nothing.save()
|
22
33
|
module.exports = {
|
23
34
|
UserData : async function(Email , Type) {
|
24
35
|
await Accounts.findOne({MyEmail: Email} , (err , data) => {
|