class Superbot::Cloud::CLI::Token::RevokeCommand

Public Instance Methods

execute() click to toggle source
# File lib/superbot/cloud/cli/token/revoke_command.rb, line 10
def execute
  revoke_token
end
revoke_token() click to toggle source
# File lib/superbot/cloud/cli/token/revoke_command.rb, line 14
def revoke_token
  api_response = Superbot::Cloud::Api.request(:revoke_access_token, params: { organization_name: organization, token: token })
  puts "Token was successfully revoked"
end