assisweb 5.0.0 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +14 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -17,12 +17,22 @@ const registerSchema = new mongoose.Schema({
17
17
  MyID: String
18
18
  })
19
19
 
20
-
20
+ const Accounts = mongoose.model("Accounts" , registerSchema)
21
21
 
22
22
 
23
23
  module.exports = {
24
- UserData : function(Email , Type) {
25
- console.log(mongoose.Collection.getIndexes("Accounts"))
26
-
24
+ UserData : async function(Email , Type) {
25
+ await Accounts.findOne({MyEmail: Email} , (err , data) => {
26
+ if(err) {
27
+ return;
28
+ }
29
+
30
+ if(data) {
31
+ if(Type === "Name")return data.MyName
32
+ if(Type === "Email")return data.MyEmail
33
+ if(Type === "ID")return data.MyID
34
+ }else return console.log("Assis Error : Email Not Found")
35
+
36
+ })
27
37
  }
28
38
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "mongoose": "^6.2.8"
4
4
  },
5
5
  "name": "assisweb",
6
- "version": "5.0.0",
6
+ "version": "6.0.0",
7
7
  "main": "index.js",
8
8
  "devDependencies": {},
9
9
  "scripts": {