Namespace

Class

Methods

Instance Public methods

reject_unauthorized_connection()

Closes the WebSocket connection if it is open and returns an “unauthorized” reason.

📝 Source code
# File actioncable/lib/action_cable/connection/authorization.rb, line 9
      def reject_unauthorized_connection
        logger.error "An unauthorized connection attempt was rejected"
        raise UnauthorizedError
      end
🔎 See on GitHub