-
Notifications
You must be signed in to change notification settings - Fork 1
/
job_roles.js
40 lines (24 loc) · 1.22 KB
/
job_roles.js
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
/**
* Will be inserted into dropdown list
* @role_id - unique id per role
* @role - name of role
* @
*/
let roles = [
{role_id: 1, role: "Tech Lead"},
{role_id: 2, role: "Senior Security Engineer"},
{role_id: 3, role: "Software Engineer"},
{role_id: 4, role: "UX Lead"},
{role_id: 5, role: "Data Archicect"},
{role_id: 6, role: "UI Lead"},
{role_id: 7, role: "Workday Consultant"}
]
// let roles = [
// {role_id: 1, role: "Tech Lead", category: "Workday", time: "Full time", location: "Belfast"},
// {role_id: 2, role: "Senior Security Engineer", category: "Cyber Security", time: "Full time", location: "Belfast"},
// {role_id: 3, role: "", category: "Data and AI", time: "Full time", location: "London"},
// {role_id: 4, role: "UX Lead", category: "UX/UI Design", time: "Full time", location: "London"},
// {role_id: 5, role: "Data Archicect", category: "Data and AI", time: "Full time", location: "Toronto"},
// {role_id: 6, role: "UI Lead", category: "UX/UI Design", time: "Full time", location: "Birmingham"},
// {role_id: 7, role: "Workday Consultant", category: "Workday", time: "Full time", location: "Dublin"},
// ]