This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
atlassian-connect.json
86 lines (86 loc) · 2.03 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
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
{
"key": "ch.linkyard.scenarios-jira",
"name": "Scenarios for User Story",
"description": "Shows the scenarios for the user story on the view issue page.",
"vendor": {
"name": "linkyard",
"url": "http://linkyard.ch"
},
"baseUrl": "{{localBaseUrl}}",
"links": {
"self": "{{localBaseUrl}}/atlassian-connect.json",
"homepage": "{{localBaseUrl}}/atlassian-connect.json"
},
"authentication": {
"type": "jwt"
},
"lifecycle": {
"installed": "/installed"
},
"scopes": [
"read",
"write"
],
"modules": {
"webPanels": [
{
"name": {
"value": "Scenarios"
},
"location": "atl.jira.view.issue.left.context",
"weight": 500,
"key": "ly-issue-scenarios",
"url": "/scenarios?project={project.key}&issue={issue.key}",
"conditions": [
{
"condition": "entity_property_equal_to",
"params": {
"entity": "issue",
"propertyKey": "ly-scenario-visible",
"value": "true"
}
}
]
}
],
"jiraProjectAdminTabPanels": [
{
"location": "projectgroup2",
"url": "/project-config?project={project.key}",
"weight": 100,
"name": {
"value": "Scenarios Integration"
},
"key": "projectconfig-panel"
}
],
"jiraIssueFields": [
{
"name": {
"value": "Scenario file"
},
"description": {
"value": "Scenario (.feature file) location in the source repository relative to the root of the repo."
},
"type": "string",
"key": "scenario-file-field"
},
{
"name": {
"value": "Scenario revision"
},
"description": {
"value": "Revision of the Scenario (.feature file)."
},
"type": "string",
"key": "scenario-rev-field"
}
],
"webhooks": [
{
"event": "jira:issue_updated",
"url": "/issue-updated"
}
]
}
}