ee8861355b
- MozoChannel < ApplicationCable::Channel was failing with NameError: uninitialized constant ApplicationCable::Channel - Standard Rails convention requires both connection.rb and channel.rb
7 lines
110 B
Ruby
7 lines
110 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ApplicationCable
|
|
class Channel < ActionCable::Channel::Base
|
|
end
|
|
end
|