# File lib/oauth/controllers/provider_controller.rb, line 70
      def revoke
        @token = current_user.tokens.find_by_token! params[:token]
        if @token
          @token.invalidate!
          flash[:notice] = "You've revoked the token for #{@token.client_application.name}"
        end
        redirect_to oauth_clients_url
      end