Explicitly disable the unused ActionCable Rails feature
Just for consistency with the other features we're not using, we turn off ActionCable when loading the app. I just removed `config/cable.yml`, so I figure, let's not load a feature without the config file it expects! (even though that didn't seem to bother it)
This commit is contained in:
parent
f23bebb607
commit
7f55456454
1 changed files with 1 additions and 1 deletions
|
@ -9,11 +9,11 @@ require "rails"
|
||||||
# Disabled:
|
# Disabled:
|
||||||
# - active_storage/engine
|
# - active_storage/engine
|
||||||
# - active_job/railtie
|
# - active_job/railtie
|
||||||
|
# - action_cable/engine
|
||||||
# - action_mailbox/engine
|
# - action_mailbox/engine
|
||||||
# - action_text/engine
|
# - action_text/engine
|
||||||
%w(
|
%w(
|
||||||
active_record/railtie
|
active_record/railtie
|
||||||
action_cable/engine
|
|
||||||
action_controller/railtie
|
action_controller/railtie
|
||||||
action_view/railtie
|
action_view/railtie
|
||||||
action_mailer/railtie
|
action_mailer/railtie
|
||||||
|
|
Loading…
Reference in a new issue