-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathrooms.js
49 lines (49 loc) · 924 Bytes
/
rooms.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
41
42
43
44
45
46
47
48
49
export default {
room1: {
ID: 'room1',
title: 'Developer Standup',
roomType: 'group',
},
'room1-activities': [
'activity1',
'activity2',
'activity3',
'activity4',
'activity5',
],
'room1-previous-activities': ['default', 'no-header', 'long', 'multi-line'],
room2: {
ID: 'room2',
title: 'UI/UX Design',
roomType: 'group',
},
'room2-activities': [
'activity6',
{date: '2019-08-15T21:00:07.047'},
'activity7',
{date: '2019-08-20T21:00:07.047'},
'activity8',
],
room3: {
ID: 'room3',
title: 'Marketing Campaign',
roomType: 'space',
},
'room3-activities': [],
room4: {
ID: 'room4',
title: 'Brandon Seege',
roomType: 'direct',
},
'room4-activities': [],
'test-widgets': {
ID: '1',
title: 'test-widgets',
type: 'group',
},
widgets: {
ID: '2',
title: 'widgets',
type: 'group',
},
};