Sha256: aa1cbbd7bf92f64920f4a5a9492adcd1d39eb18f872f0d24b08069d962ec93b0
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 [Object] :users # A comma-separated list of user ids, up to 400 per request. # @option options [Object] :team_id # Specify team_id starts with T in case of Org Token. # @option options [Object] :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-0.17.0 | lib/slack/web/api/endpoints/migration.rb |
slack-ruby-client-0.16.0 | lib/slack/web/api/endpoints/migration.rb |