-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch-form.json
More file actions
89 lines (89 loc) · 1.93 KB
/
Copy pathsearch-form.json
File metadata and controls
89 lines (89 loc) · 1.93 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
{
"type": "modal",
"title": {
"type": "plain_text",
"text": "Search for Key Learnings",
"emoji": true
},
"submit": {
"type": "plain_text",
"text": "Save",
"emoji": true
},
"close": {
"type": "plain_text",
"text": "Cancel",
"emoji": true
},
"blocks": [
{
"type": "input",
"optional": false,
"label": {
"type": "plain_text",
"text": "Related Themes (Required — you can choose multiple items)"
},
"element": {
"type": "multi_static_select",
"action_id": "predefinedRelatedThemeTags",
"placeholder": {
"type": "plain_text",
"text": "Select related themes",
"emoji": true
},
"options": []
}
},
{
"type": "input",
"optional": true,
"label": {
"type": "plain_text",
"text": "Industry"
},
"element": {
"type": "static_select",
"action_id": "predefinedIndustryTags",
"placeholder": {
"type": "plain_text",
"text": "Select industry tags",
"emoji": true
},
"options": []
}
},
{
"type": "input",
"optional": true,
"label": {
"type": "plain_text",
"text": "Client"
},
"element": {
"type": "static_select",
"action_id": "predefinedClientTags",
"placeholder": {
"type": "plain_text",
"text": "Select client",
"emoji": true
},
"options": []
}
},
{
"block_id": "my_block_id",
"type": "input",
"optional": true,
"label": {
"type": "plain_text",
"text": "Select a channel to post the result on"
},
"element": {
"action_id": "my_action_id",
"type": "conversations_select",
"default_to_current_conversation": true,
"response_url_enabled": true
}
}
]
}