-
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2f2b45
commit 401a2b4
Showing
44 changed files
with
879 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# frozen_string_literal: true | ||
# This file was auto-generated by lib/tasks/web.rake | ||
|
||
desc 'AdminConversationsEkm methods.' | ||
command 'admin_conversations_ekm' do |g| | ||
g.desc 'List all disconnected channels—i.e., channels that were once connected to other workspaces and then disconnected—and the corresponding original channel IDs for key revocation with EKM.' | ||
g.long_desc %( List all disconnected channels—i.e., channels that were once connected to other workspaces and then disconnected—and the corresponding original channel IDs for key revocation with EKM. ) | ||
g.command 'listOriginalConnectedChannelInfo' do |c| | ||
c.flag 'channel_ids', desc: 'A comma-separated list of channels to filter to.' | ||
c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.' | ||
c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.' | ||
c.flag 'team_ids', desc: 'A comma-separated list of the workspaces to which the channels you would like returned belong.' | ||
c.action do |_global_options, options, _args| | ||
puts JSON.dump($client.admin_conversations_ekm_listOriginalConnectedChannelInfo(options)) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# frozen_string_literal: true | ||
# This file was auto-generated by lib/tasks/web.rake | ||
|
||
desc 'AppsEventAuthorizations methods.' | ||
command 'apps_event_authorizations' do |g| | ||
g.desc 'Get a list of authorizations for the given event context. Each authorization represents an app installation that the event is visible to.' | ||
g.long_desc %( Get a list of authorizations for the given event context. Each authorization represents an app installation that the event is visible to. ) | ||
g.command 'list' do |c| | ||
c.flag 'event_context', desc: '.' | ||
c.flag 'cursor', desc: '.' | ||
c.flag 'limit', desc: '.' | ||
c.action do |_global_options, options, _args| | ||
puts JSON.dump($client.apps_event_authorizations_list(options)) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
401a2b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've been so much impressed by your contribution @wasabigeek !!
Please keep doing good 👍 👍 🥇
401a2b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@crazyoptimist oh hey thanks, actually most of the credit for this goes to the infra that @dblock and other maintainers setup, I literally run a rake task that does all of this :D
Feel free to try it yourself! https://github.com/slack-ruby/slack-ruby-client/blob/master/CONTRIBUTING.md#update-slack-web-api, I saw there are already new methods that can be added