-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
52 lines (52 loc) · 1.24 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
{
"name": "floor-plan-photos",
"version": "0.9.6",
"title": "Floor plan with Photos",
"description": "Show a floor plan with photos",
"platform": ">=1.0.21",
"icon" : "server/assets/add-photos-image.png",
"dependencies": [
"shoutem.layouts",
"shoutem.cms"
],
"categories": ["media"],
"repository": {
"type": "git",
"url": "https://github.com/KSET/jobfair-mobile"
},
"shortcuts": [{
"name": "photos-shortcut",
"title": "Manual photos",
"screen": "@.PhotosList",
"icon": "theme://photo.png",
"adminPages": [{
"page": "shoutem.cms.CmsPage",
"title": "Content",
"parameters": {
"schema": "@.Photos"
}
},
{
"page": "shoutem.layouts.LayoutPage",
"title": "Layout"
}]
}],
"screens": [{
"name": "PhotosList",
"title": "List",
"navigatesTo":["@.PhotosList"],
"image":"./server/assets/screens/layout-large-list.png"
},{
"name": "PhotosGrid",
"title": "Grid",
"extends": "@.PhotosList",
"image":"./server/assets/screens/layout-grid.png"
},{
"name": "PhotoDetails",
"title": "PhotoDetails"
}],
"dataSchemas": [{
"name": "Photos",
"path": "server/schemas/photos.json"
}]
}