Sha256: d6c8f092985320e6fa563c3c21fb696bd3c89df05d17362cf8cec33892f1ea50
Contents?: true
Size: 388 Bytes
Versions: 18
Compression:
Stored size: 388 Bytes
Contents
module ActionCable module Connection module Authorization class UnauthorizedError < StandardError; end # Closes the \WebSocket connection if it is open and returns a 404 "File not Found" response. def reject_unauthorized_connection logger.error "An unauthorized connection attempt was rejected" raise UnauthorizedError end end end end
Version data entries
18 entries across 18 versions & 1 rubygems