forked from robertmassaioli/ep-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.dhall
55 lines (55 loc) · 1.6 KB
/
manifest.dhall
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
{ app =
{ features.autoUserConsent = True
, id = "ari:cloud:ecosystem::app/1c0636dd-b020-48a5-b68b-0d3f2fe06134"
, runtime.name = "nodejs18.x"
}
, modules =
{ function = [ { handler = "index.handler", key = "resolver" } ]
, `jira:globalPage` =
[ { icon = "resource:main;entity-properties-icon.svg"
, key = "entity-properties-global"
, pages =
[ { route = "user", title = "User entity properties" }
, { route = "issue-type", title = "Issue Type entity properties" }
, { route = "dashboard-items"
, title = "Dashboard Item entity properties"
}
, { route = "workflow-transitions"
, title = "Workflow Transition entity properties"
}
]
, resolver.function = "resolver"
, resource = "main"
, title = "Entity properties"
}
]
, `jira:issuePanel` =
[ { icon = "resource:main;entity-properties-icon.svg"
, key = "issue-entity-properties"
, resolver.function = "resolver"
, resource = "main"
, title = "Entity properties"
}
]
, `jira:projectPage` =
[ { icon = "resource:main;entity-properties-icon.svg"
, key = "project-entity-properties"
, resolver.function = "resolver"
, resource = "main"
, title = "Entity properties"
}
]
}
, permissions =
{ content.styles = [ "unsafe-inline" ]
, scopes =
[ "read:jira-work"
, "write:jira-work"
, "manage:jira-project"
, "read:jira-user"
, "manage:jira-configuration"
]
}
, resources =
[ { key = "main", path = "static/hello-world/build", tunnel.port = 3001 } ]
}