# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake desc 'AppsPermissionsScopes methods.' command 'apps_permissions_scopes' do |g| g.desc 'Returns list of scopes this app has on a team.' g.long_desc %( Returns list of scopes this app has on a team. ) g.command 'list' do |c| c.action do |_global_options, options, _args| puts JSON.dump($client.apps_permissions_scopes_list(options)) end end end