Sha256: 15b6eae534dfcc32d3daedbf88e82ecf521aa53e406178a9d2d1c798c1c021ed
Contents?: true
Size: 680 Bytes
Versions: 6
Compression:
Stored size: 680 Bytes
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake desc 'AdminAppsRequests methods.' command 'admin_apps_requests' do |g| g.desc 'List app requests for a team/workspace.' g.long_desc %( List app requests for a team/workspace. ) g.command 'list' do |c| 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_id', desc: '.' c.action do |_global_options, options, _args| puts JSON.dump($client.admin_apps_requests_list(options)) end end end
Version data entries
6 entries across 6 versions & 1 rubygems