-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatlassian-connect.json
53 lines (46 loc) · 1.15 KB
/
atlassian-connect.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
{
"key": "confluence-helloworld-addon",
"name": "My AWS Widget",
"description": "My very first add-on",
"vendor": {
"name": "Yanhui Li",
"url": "https://www.atlassian.com/angrynerds"
},
"baseUrl": "{{localBaseUrl}}",
"links": {
"self": "{{localBaseUrl}}/atlassian-connect.json",
"homepage": "{{localBaseUrl}}/atlassian-connect.json"
},
"authentication": {
"type": "jwt"
},
"lifecycle": {
"installed": "/installed"
},
"scopes": [
"READ"
],
"modules": {
"dynamicContentMacros": [
{
"key": "helloworld-macro",
"name": {
"value": "Hello World Macro"
},
"url": "/macro",
"description": {
"value": "Says 'Hello World'."
},
"outputType": "block",
"bodyType": "none"
}
],
"configurePage": {
"url": "/my-config-page",
"name": {
"value": "My Configure Page"
},
"key": "my-config-page"
}
}
}