forked from misterGF/CoPilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate.js
More file actions
55 lines (55 loc) · 1.31 KB
/
Copy pathstate.js
File metadata and controls
55 lines (55 loc) · 1.31 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
52
53
54
55
export default {
callingAPI: false,
searching: '',
serverURI: 'http://10.110.1.136:8080',
user: null,
token: null,
userInfo: {
messages: [
{
id: 1,
title: 'Support Team',
body: 'Why not consider this a test message?',
createdAt: '17 min ago'
}
],
notifications: [
{
id: 1,
title: 'Birthday Reminder',
body: 'Today is Brians birthday.',
createdAt: 'just now',
readAt: null
},
{
id: 2,
title: 'Bank Holiday in London',
body: 'Our office in London has a bank holiday today. Do not expect them to answer the phone.',
createdAt: '4 hours ago',
readAt: null
},
{
id: 3,
title: 'Birthday Reminder',
body: 'Today is Christians birthday.',
createdAt: '27 days ago',
readAt: '2018-08-12 00:00:00'
},
{
id: 4,
title: 'Birthday Reminder',
body: 'Today is Tanjas birthday.',
createdAt: '29 days ago',
readAt: '2018-08-12 00:00:00'
},
{
id: 5,
title: 'Sales Bonus received',
body: 'You received your monthly sales bonus of 3%. This month you made $2,700 extra!',
createdAt: '7 hours ago',
readAt: null
}
],
tasks: []
}
}