-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresolve_modal.json
More file actions
108 lines (108 loc) · 2.51 KB
/
resolve_modal.json
File metadata and controls
108 lines (108 loc) · 2.51 KB
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
{
"trigger_id": "body.trigger_id",
"view": {
"type": "modal",
"callback_id": "resolve_modal",
"title": {
"type": "plain_text",
"text": "Resolve Task"
},
"private_metadata": "metadata",
"blocks": [
{
"type": "section",
"block_id": "dropdown",
"text": {
"type": "mrkdwn",
"text": "What is the resolution to this request?"
},
"accessory": {
"action_id": "resolve_modal_a",
"type": "static_select",
"placeholder": {
"type": "plain_text",
"text": "Select resolution"
},
"options": [
{
"text": {
"type": "plain_text",
"text": "Complete"
},
"value": "complete"
},
{
"text": {
"type": "plain_text",
"text": "Added to order"
},
"value": "added_to_order"
},
{
"text": {
"type": "plain_text",
"text": "Ordered"
},
"value": "ordered"
},
{
"text": {
"type": "plain_text",
"text": "Notified facilities"
},
"value": "notified_facilities"
},
{
"text": {
"type": "plain_text",
"text": "Dismissed"
},
"value": "dismissed"
}
],
"initial_option": {
"text": {
"type": "plain_text",
"text": "Complete"
},
"value": "complete"
}
}
},
{
"type": "section",
"block_id": "button",
"text": {
"type": "plain_text",
"text": " "
},
"accessory": {
"type": "checkboxes",
"action_id": "resolve_modal_a",
"initial_options": [
{
"value": "A1",
"text": {
"type": "plain_text",
"text": "Notify requester"
}
}
],
"options": [
{
"value": "A1",
"text": {
"type": "plain_text",
"text": "Notify requester"
}
}
]
}
}
],
"submit": {
"type": "plain_text",
"text": "Resolve"
}
}
}