File size: 1,568 Bytes
1e92f2d |
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
// @flow
const constants = require('./constants');
const { DATE, MAX_ID, BRYN_ID, BRIAN_ID } = constants;
module.exports = [
{
id: '1',
createdAt: new Date(DATE),
userId: BRIAN_ID,
threadId: 'thread-1',
receiveNotifications: true,
isParticipant: true,
},
{
id: '2',
createdAt: new Date(DATE + 1),
userId: MAX_ID,
threadId: 'thread-1',
receiveNotifications: true,
isParticipant: true,
},
{
id: '3',
createdAt: new Date(DATE + 2),
userId: BRYN_ID,
threadId: 'thread-1',
receiveNotifications: true,
isParticipant: true,
},
{
id: '4',
createdAt: new Date(DATE),
userId: BRIAN_ID,
threadId: 'thread-2',
receiveNotifications: true,
isParticipant: true,
},
{
id: '5',
createdAt: new Date(DATE + 1),
userId: MAX_ID,
threadId: 'thread-2',
receiveNotifications: true,
isParticipant: true,
},
{
id: '6',
createdAt: new Date(DATE + 2),
userId: BRYN_ID,
threadId: 'thread-2',
receiveNotifications: true,
isParticipant: true,
},
{
id: '7',
createdAt: new Date(DATE),
userId: BRIAN_ID,
threadId: 'thread-3',
receiveNotifications: true,
isParticipant: true,
},
{
id: '8',
createdAt: new Date(DATE + 1),
userId: MAX_ID,
threadId: 'thread-3',
receiveNotifications: true,
isParticipant: true,
},
{
id: '9',
createdAt: new Date(DATE + 2),
userId: BRYN_ID,
threadId: 'thread-3',
receiveNotifications: true,
isParticipant: true,
},
];
|