-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathseed_data.json
More file actions
82 lines (82 loc) · 1.86 KB
/
seed_data.json
File metadata and controls
82 lines (82 loc) · 1.86 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
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
82
[{
"user": {
"username": "testuser0@veems.tv",
"email": "testuser0@veems.tv",
"password": "password"
},
"channels": [{
"name": "The Duran",
"avatar_image_url": "https://i.imgur.com/LluXaJJ.png",
"description": "Example channel description",
"sync_videos_interested": true,
"is_selected": false,
"videos": [
{
"title": "Test Video 1080p 30fps Vertical",
"description": "Here is a video description.",
"path": "tests/test_data/1080p_30fps_vertical.webm",
"comments": [
"Test 1",
"Test 2",
"Test 3",
"Test 4",
"Test 5",
"Test 6",
"Test 7",
"Test 8",
"Test 9",
"Test 10",
"Test 12",
"Test 13",
"Test 14",
"Test 15",
"Test 16",
"Test 17",
"Test 18",
"Test 19",
"Test 20"
]
}
]
}, {
"name": "Chris Williamson",
"description": "Example channel description",
"avatar_image_url": "https://i.imgur.com/Veuu9y1.png",
"sync_videos_interested": true,
"is_selected": true,
"videos": [
{
"title": "This is a test video, hello world",
"description": "Here is a video description.",
"path": "tests/test_data/1920x960.mp4"
}
]
}, {
"name": "Deep Light",
"avatar_image_url": "https://i.imgur.com/qcCAlTW.png",
"description": "Example channel description",
"sync_videos_interested": false,
"is_selected": false,
"videos": []
}]
},{
"user": {
"username": "testuser1@veems.tv",
"email": "testuser1@veems.tv",
"password": "password"
},
"channels": [{
"name": "Another User's Channel",
"avatar_image_url": null,
"description": "Example channel description",
"sync_videos_interested": true,
"is_selected": false,
"videos": [
{
"title": "Test Video 1080p 30fps Vertical by Another User",
"description": "Here is a video description.",
"path": "tests/test_data/1080p_30fps_vertical.webm"
}
]
}]
}]