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
This commit is contained in:
BenClaw
2026-05-17 19:06:00 +02:00
parent df04e99447
commit ee8861355b
@@ -0,0 +1,6 @@
# frozen_string_literal: true
module ApplicationCable
class Channel < ActionCable::Channel::Base
end
end