Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update API from slack-api-ref@a29b520 #473

Merged
merged 1 commit into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* [#452](https://github.com/slack-ruby/slack-ruby-client/pull/452): Automatically generate Web API multi-argument requirements from docs - [@jmanian](https://github.com/jmanian).
* [#448](https://github.com/slack-ruby/slack-ruby-client/pull/448), [#453](https://github.com/slack-ruby/slack-ruby-client/pull/453): Automatically convert more Web API arguments to JSON-encoded strings - [@jmanian](https://github.com/jmanian).
* [#465](https://github.com/slack-ruby-client/pulls/465): Update API from [slack-api-ref@878be8f](https://github.com/slack-ruby/slack-api-ref/commit/878be8f) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
* [#473](https://github.com/slack-ruby-client/pulls/473): Update API from [slack-api-ref@a29b520](https://github.com/slack-ruby/slack-api-ref/commit/a29b520) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
* Your contribution here.

### 2.1.0 (2023/03/17)
Expand Down
2 changes: 1 addition & 1 deletion bin/commands/admin_roles.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class App
g.command 'listAssignments' do |c|
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.'
c.flag 'entity_ids', desc: 'The entities for which the roles apply.'
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 100 both inclusive.'
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 200 both inclusive.'
c.flag 'role_ids', desc: 'collection of role ids to scope results by.'
c.flag 'sort_dir', desc: 'Sort direction. Default is descending on date_create, can be either ASC or DESC.'
c.action do |_global_options, options, _args|
Expand Down
2 changes: 1 addition & 1 deletion lib/slack/web/api/endpoints/admin_roles.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def admin_roles_addAssignments(options = {})
# @option options [array] :entity_ids
# The entities for which the roles apply.
# @option options [integer] :limit
# The maximum number of items to return. Must be between 1 - 100 both inclusive.
# The maximum number of items to return. Must be between 1 - 200 both inclusive.
# @option options [array] :role_ids
# collection of role ids to scope results by.
# @option options [string] :sort_dir
Expand Down