-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathproperty.conf
77 lines (72 loc) · 1.77 KB
/
property.conf
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
{
"version": "1.0.0",
"name": "Slack",
"actions": [
{
"name": "connect_slack_post_action",
"label": "Slack Post",
"group": "notify",
"description": "Post a message to Slack",
"ip_required": "false",
"params": [
{
"name": "connect_slack_action_type",
"label": "Post Message to",
"description": "Select if you want to send message on a channel or to a user",
"type": "list",
"options": [
{
"name": "connect_slack_action_type_1",
"label": "channel"
},
{
"name": "connect_slack_action_type_2",
"label": "user"
}
]
},
{
"name": "connect_slack_action_input_channel",
"label": "Send To",
"description": "Slack Channel for Posting",
"type": "string"
},
{
"name": "connect_slack_action_message",
"label": "Slack Post Message",
"description": "Message",
"type": "string",
"multiline": true
},
{
"name": "connect_slack_action_message_type",
"label": "Message Format ",
"description": "Message format standard string or Slack Blocks",
"type": "list",
"options": [
{
"name": "connect_slack_message_type_1",
"label": "string"
},
{
"name": "connect_slack_message_type_2",
"label": "Slack blocks"
}
]
}
]
}
],
"scripts": [
{
"name": "slack_action.py",
"actions": [
"connect_slack_post_action"
]
},
{
"name": "test.py",
"test": true
}
]
}