You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,6 @@
4
4
*[#527](https://github.com/slack-ruby/slack-ruby-client/pull/527): Explicitly require `racc` and `ostruct` - [@dblock](https://github.com/dblock).
5
5
*[#528](https://github.com/slack-ruby/slack-ruby-client/pull/528): Don't treat asterisks in list items as italic in markdown - [@rspeicher](https://github.com/rspeicher).
6
6
*[#530](https://github.com/slack-ruby/slack-ruby-client/pull/530): Specify dependency on logger - [@rwstauner](https://github.com/rwstauner).
7
-
*[#524](https://github.com/slack-ruby-client/pulls/524): Update API from [slack-api-ref@3ec3c10](https://github.com/slack-ruby/slack-api-ref/commit/3ec3c10) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
Copy file name to clipboardExpand all lines: bin/commands/admin_workflows.rb
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,18 +10,16 @@ class App
10
10
g.long_desc%( Search workflows within the team or enterprise )
11
11
g.command'search'do |c|
12
12
c.flag'app_id',desc: 'The parent app ID for which to return workflows.'
13
-
c.flag'collaborator_ids',desc: 'Only include workflows where all of the provided user IDs are a manager/collaborator of that workflow.'
13
+
c.flag'collaborator_ids',desc: 'Only include workflows where the provided user IDs are a manager/collaborator of that workflow.'
14
14
c.flag'cursor',desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
15
15
c.flag'is_sales_elevate',desc: 'Filter workflows by their Sales Elevate status.'
16
16
c.flag'limit',desc: 'The number of results that will be returned by the API on each invocation.'
17
17
c.flag'no_collaborators',desc: 'Only include workflows with no collaborators in the result; default is false.'
18
18
c.flag'num_trigger_ids',desc: 'Number of trigger IDs to fetch for each workflow; default is 10.'
19
-
c.flag'publish_status',desc: 'Filter workflows by their published status.'
20
19
c.flag'query',desc: 'A search query to filter for workflow name or description.'
21
20
c.flag'sort',desc: 'The field used to sort the returned workflows.'
22
21
c.flag'sort_dir',desc: 'Sort direction. Possible values are asc for ascending order like (1, 2, 3) or (a, b, c), and desc for descending order like (3, 2, 1) or (c, b, a).'
23
22
c.flag'source',desc: 'Source of workflow creation, either from code or workflow builder.'
24
-
c.flag'step_function_ids',desc: 'Only include workflows that use all of the provided step function ids.'
25
23
c.flag'trigger_type_id',desc: 'Only include workflows with this trigger type.'
Copy file name to clipboardExpand all lines: bin/commands/chat.rb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -82,11 +82,11 @@ class App
82
82
g.desc'Sends a message to a channel.'
83
83
g.long_desc%( Sends a message to a channel. )
84
84
g.command'postMessage'do |c|
85
-
c.flag'channel',desc: 'An encoded ID that represents a channel, private group, or IM channel to send the message to. See below for more details.'
85
+
c.flag'channel',desc: 'Channel, private group, or IM channel to send message to. Can be an encoded ID, or a name. See below for more details.'
86
86
c.flag'attachments',desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
87
87
c.flag'blocks',desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
88
88
c.flag'text',desc: 'How this field works and whether it is required depends on other fields you use in your API call. See below for more detail.'
89
-
c.flag'as_user',desc: '(Legacy) Pass true to post the message as the authed user instead of as a bot. Defaults to false. Can only be used by classic apps. See legacy as_user parameter below.'
89
+
c.flag'as_user',desc: '(Legacy) Pass true to post the message as the authed user instead of as a bot. Defaults to false. Can only be used by classic Slack apps. See authorship below.'
90
90
c.flag'icon_emoji',desc: 'Emoji to use as the icon for this message. Overrides icon_url.'
91
91
c.flag'icon_url',desc: 'URL to an image to use as the icon for this message.'
92
92
c.flag'link_names',desc: 'Find and link user groups. No longer supports linking individual users; use syntax shown in Mentioning Users instead.'
0 commit comments