blob: 85df206445c5bfa3408f3a4df668975b1d02f4b4 (
plain) (
tree)
|
|
module ActionCable
module Connection
module Authorization
class UnauthorizedError < StandardError; end
private
def reject_unauthorized_connection
logger.error "An unauthorized connection attempt was rejected"
raise UnauthorizedError
end
end
end
end
|