-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.webapp
42 lines (42 loc) · 1.01 KB
/
manifest.webapp
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
{
"name": "Cozy-DISPERS",
"slug": "dispers",
"icon": "icon.svg",
"categories": [],
"version": "0.1.0",
"licence": "AGPL-3.0",
"editor": "",
"source": "https://github.com/tintinmar1995/cozy-dispers-app.git@build",
"developer": {
"name": "tintinmar1995",
"url": "tintinmar1995.github.io"
},
"routes": {
"/": {
"folder": "/",
"index": "index.html",
"public": false
}
},
"permissions": {
"apps": {
"description": "Required by the cozy-bar to display the icons of the apps",
"type": "io.cozy.apps",
"verbs": ["GET"]
},
"querydoc": {
"description": "Required to save a query in database and retrieve it after",
"type": "io.cozy.queries"
},
"query": {
"description": "Required to create a new query",
"type": "cc.cozycloud.dispers.query",
"verbs": ["POST"]
},
"state": {
"description": "Required to retreive queries' state",
"type": "cc.cozycloud.dispers.state",
"verbs": ["GET"]
}
}
}