-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
55 lines (55 loc) · 1.11 KB
/
extension.json
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
{
"name": "music",
"title": "Music",
"version": "0.0.1",
"description": "",
"platform": "1.0.*",
"screens": [
{
"name": "MusicList",
"title": "Big list",
"image": "server/assets/screens/big-list.png"
},
{
"name": "MusicDetails"
},
{
"name": "SmallMusicList",
"title": "Small list",
"image": "server/assets/screens/small-list.png",
"extends": "@.MusicList"
},
{
"name": "FeaturedMusicList",
"title": "List with featured list item",
"image": "server/assets/screens/featuredlist.png",
"extends": "@.MusicList"
}
],
"shortcuts": [
{
"title": "Music",
"name": "Music",
"screen": "@.MusicList",
"adminPages": [
{
"page": "shoutem.cms.CmsPage",
"title": "Content",
"parameters": {
"schema": "@.Song"
}
},
{
"page": "shoutem.layouts.LayoutPage",
"title": "Layout"
}
]
}
],
"dataSchemas": [
{
"name": "Song",
"path": "server/data-schemas/Song.json"
}
]
}