mock_data.js 1.04 KB
Newer Older
Regis's avatar
Regis committed
1
export default {
2 3 4 5 6 7
  initialRequest: {
    title: '<p>this is a title</p>',
    title_text: 'this is a title',
    description: '<p>this is a description!</p>',
    description_text: 'this is a description',
    task_status: '2 of 4 completed',
8 9 10
    updated_at: '2015-05-15T12:31:04.428Z',
    updated_by_name: 'Some User',
    updated_by_path: '/some_user',
11 12 13 14 15 16 17
  },
  secondRequest: {
    title: '<p>2</p>',
    title_text: '2',
    description: '<p>42</p>',
    description_text: '42',
    task_status: '0 of 0 completed',
18 19 20
    updated_at: '2016-05-15T12:31:04.428Z',
    updated_by_name: 'Other User',
    updated_by_path: '/other_user',
21
  },
Regis's avatar
Regis committed
22 23 24 25 26 27
  issueSpecRequest: {
    title: '<p>this is a title</p>',
    title_text: 'this is a title',
    description: '<li class="task-list-item enabled"><input type="checkbox" class="task-list-item-checkbox">Task List Item</li>',
    description_text: '- [ ] Task List Item',
    task_status: '0 of 1 completed',
28 29 30
    updated_at: '2017-05-15T12:31:04.428Z',
    updated_by_name: 'Last User',
    updated_by_path: '/last_user',
Regis's avatar
Regis committed
31
  },
Regis's avatar
Regis committed
32
};