Files
mozo-backend/app/channels/application_cable/channel.rb
T
BenClaw ee8861355b fix(action_cable): add missing ApplicationCable::Channel base class
- MozoChannel < ApplicationCable::Channel was failing with
  NameError: uninitialized constant ApplicationCable::Channel
- Standard Rails convention requires both connection.rb and channel.rb
2026-05-17 19:06:00 +02:00

7 lines
110 B
Ruby

# frozen_string_literal: true
module ApplicationCable
class Channel < ActionCable::Channel::Base
end
end