Sha256: 7227b575b46e524ef78615ba1bdd4a343205c148a1c2e3f318239736e92a8d6f
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake module Slack module Web module Api module Endpoints module Migration # # For Enterprise Grid workspaces, map local user IDs to global user IDs # # @option options [array] :users # A comma-separated list of user ids, up to 400 per request. # @option options [string] :team_id # Specify team_id starts with T in case of Org Token. # @option options [boolean] :to_old # Specify true to convert W global user IDs to workspace-specific U IDs. Defaults to false. # @see https://api.slack.com/methods/migration.exchange # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/migration/migration.exchange.json def migration_exchange(options = {}) throw ArgumentError.new('Required arguments :users missing') if options[:users].nil? post('migration.exchange', options) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-1.1.0 | lib/slack/web/api/endpoints/migration.rb |
slack-ruby-client-1.0.0 | lib/slack/web/api/endpoints/migration.rb |