-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestData.js
More file actions
31 lines (31 loc) · 732 Bytes
/
testData.js
File metadata and controls
31 lines (31 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const mongodb = require('mongodb')
module.exports = {
users:[
{
_id: mongodb.ObjectId('53cb6b9b4f4ddef1ad47f943'),
name: 'John Doe',
type: 'pr-user',
created: new Date(),
lastLogin: new Date(),
webId: 'ut',
social: [
{
id: '123456', type: 'gl', email: 'john.doe@gmail.com', profilePic: 'https://imageurl'
}
]
},
{
_id: mongodb.ObjectId('53cb6b9b4f4ddef1ad47f944'),
name: 'Jane Doe',
type: 'user',
created: new Date(),
lastLogin: new Date(),
webId: 'ut',
social: [
{
id: '3495933', type: 'gl', email: 'jane.doe@gmail.com', profilePic: 'https://imageurl'
}
]
}
]
}