nits
This commit is contained in:
@@ -744,7 +744,10 @@ export function cleanValueProperties(obj: Value) {
|
||||
|
||||
export function orderedJsonStringify(obj: any, space?: string | number) {
|
||||
const allKeys = new Set()
|
||||
JSON.stringify(obj, (key, value) => (value && allKeys.add(key), value))
|
||||
JSON.stringify(
|
||||
obj,
|
||||
(key, value) => (value != undefined && value != null && allKeys.add(key), value)
|
||||
)
|
||||
return JSON.stringify(obj, (Array.from(allKeys) as string[]).sort(), space)
|
||||
}
|
||||
|
||||
|
||||
@@ -813,6 +813,11 @@
|
||||
|
||||
<br /><br />
|
||||
|
||||
It can take additionally the following args: channel_id, user_name, user_id, command,
|
||||
trigger_id, api_app_id
|
||||
|
||||
<br /><br />
|
||||
|
||||
<span class="font-bold text-xs">
|
||||
The script or flow is permissioned as group "slack" that will be automatically created
|
||||
after connection to Slack.
|
||||
|
||||
Reference in New Issue
Block a user