Sha256: 9a86f5781c662ba4d8ff7773b24e6918718bf75deb90f0a905b47eaad6c088d9
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 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 AppsEventAuthorizations # # Get a list of authorizations for the given event context. Each authorization represents an app installation that the event is visible to. # # @option options [Object] :event_context # . # @option options [Object] :cursor # . # @option options [Object] :limit # . # @see https://api.slack.com/methods/apps.event.authorizations.list # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps.event.authorizations/apps.event.authorizations.list.json def apps_event_authorizations_list(options = {}) throw ArgumentError.new('Required arguments :event_context missing') if options[:event_context].nil? if block_given? Pagination::Cursor.new(self, :apps_event_authorizations_list, options).each do |page| yield page end else post('apps.event.authorizations.list', options) end 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/apps_event_authorizations.rb |
slack-ruby-client-0.16.0 | lib/slack/web/api/endpoints/apps_event_authorizations.rb |