-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest.webapp
121 lines (121 loc) · 3.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "Settings",
"name_prefix": "Cozy",
"slug": "settings",
"icon": "app-icon.svg",
"source": "https://github.com/cozy/cozy-settings",
"editor": "Cozy",
"developer": {
"name": "Cozy",
"url": "https://cozy.io"
},
"version": "1.46.1",
"licence": "AGPL-3.0",
"permissions": {
"settings": {
"description": "Required to manage your settings",
"type": "io.cozy.settings",
"verbs": ["GET", "POST", "PUT"]
},
"exports": {
"description": "Required to export the Cozy data",
"type": "io.cozy.exports",
"verbs": ["GET", "POST"]
},
"imports": {
"description": "Required to import the Cozy data",
"type": "io.cozy.imports",
"verbs": ["GET", "POST"]
},
"sessions": {
"description": "Required to manage your sessions",
"type": "io.cozy.sessions.logins",
"verbs": ["GET"]
},
"current_sessions": {
"description": "Required to manage your sessions",
"type": "io.cozy.sessions",
"verbs": ["GET"]
},
"oauth": {
"description": "Required to manage devices connected to your Cozy",
"type": "io.cozy.oauth.clients",
"verbs": ["GET", "DELETE"]
},
"apps": {
"description": "Required by the cozy-bar to display the icons of the apps",
"type": "io.cozy.apps",
"verbs": ["GET", "POST", "PUT"]
},
"konnectors": {
"description": "Required to get the list of konnectors",
"type": "io.cozy.konnectors",
"verbs": ["GET"]
},
"accounts": {
"description": "Required to manage accounts associated to konnectors",
"type": "io.cozy.accounts",
"verbs": ["GET"]
},
"jobs": {
"description": "Required to send emails to support",
"type": "io.cozy.jobs",
"verbs": ["ALL"]
},
"files": {
"description": "Required to select folders to synchronize on devices",
"type": "io.cozy.files",
"verbs": ["ALL"]
},
"remote_request": {
"description": "",
"type": "io.cozy.remote.requests",
"verbs": ["GET"]
},
"doctypes": {
"description": "",
"type": "io.cozy.doctypes",
"verbs": ["GET"]
},
"home": {
"description": "Required to manage your settings about default redirection",
"type": "io.cozy.home.settings",
"verbs": ["GET", "POST", "PUT"]
}
},
"routes": {
"/": {
"folder": "/",
"index": "index.html",
"public": false
},
"/services/claudy": {
"folder": "/intents",
"index": "index.html",
"public": false
},
"/services/support": {
"folder": "/intents",
"index": "index.html",
"public": false
}
},
"intents": [
{
"action": "CLAUDY",
"type": ["io.cozy.settings"],
"href": "/services/claudy"
},
{
"action": "SUPPORT",
"type": ["io.cozy.settings"],
"href": "/services/support"
},
{
"action": "REDIRECT",
"type": ["io.cozy.settings"],
"href": "/#/redirect"
}
],
"type": "webapp"
}