-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabase.js
More file actions
51 lines (48 loc) · 1.27 KB
/
database.js
File metadata and controls
51 lines (48 loc) · 1.27 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const candidates = [
{
'candidateUUID': '98',
'name': 'Sam Package',
'email': 'sam.package@welovepackages.com',
'telephone': '07483849774',
'University': 'Bristol',
'Degree': 'Packages',
'rolesAppliedFor': ['roleUUID1'],
'resumeLink': 'resume.com/resume.doc',
'description': 'bla bla bla package bla'
}, {
'candidateUUID': 'candidateUUID2',
'name': 'Graduate 1',
'email': 'hello.graduates@wegraduates.com',
'telephone': '07483849774',
'University': 'Bristol',
'Degree': 'saying hi',
'rolesAppliedFor': ['roleUUID2'],
'resumeLink': 'resume.com/resume.doc',
'description': 'bla bla bla package bla'
}
]
const hosts = {
hostUUID: {
'name': 'Founders & Coders',
'websiteLink': 'foundersandcoders.com',
'email': 'hello@foundersandcoders.com',
'telephone': '02035793849',
'location': 'Bethnal Green',
'roles': ['role12345', 'role56789'],
'hostDescription': 'We train people to make websites'
}
}
const roles = [
{
'roleUUID': 'roleUUID1',
'roleTitle': 'Web Developer',
'host': 'hostUUID',
'description': 'You would be helping us make websites for people',
'applicants': ['98', 'candidateUUID2', 'candidateUUID3']
}
]
module.exports = {
candidates,
hosts,
roles
}