-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.webapp
48 lines (48 loc) · 983 Bytes
/
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
43
44
45
46
47
48
{
"name": "cozy-data-proxy",
"slug": "dataproxy",
"icon": "icon.svg",
"categories": ["cozy"],
"version": "0.1.0",
"licence": "AGPL-3.0",
"editor": "Cozy",
"source": "https://github.com/cozy/cozy-web-data-proxy",
"developer": {
"name": "cozy",
"url": "https://cozy.io"
},
"routes": {
"/": {
"folder": "/",
"index": "index.html",
"public": false
},
"/reset": {
"folder": "/reset",
"index": "index.html",
"public": true
}
},
"intents": [
{
"action": "OPEN",
"type": ["io.cozy.dataproxy"],
"href": "/"
}
],
"permissions": {
"apps": {
"description": "Required to search in apps",
"type": "io.cozy.apps",
"verbs": ["GET"]
},
"files": {
"description": "Required to search in files",
"type": "io.cozy.files"
},
"contacts": {
"description": "Required to search in contacts",
"type": "io.cozy.contacts"
}
}
}