Sha256: 329090dceab149e7f1c46e56d2b62f4b3485fa9e53def6c045ca2a15f70f9528
Contents?: true
Size: 736 Bytes
Versions: 5
Compression:
Stored size: 736 Bytes
Contents
# 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
Version data entries
5 entries across 5 versions & 1 rubygems