aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-04-15 16:00:42 +0530
committerVipul A M <vipulnsward@gmail.com>2016-04-15 16:00:42 +0530
commit8ad9670abb2d662df6fd0cf3b363fb5bf6a09de3 (patch)
tree2e96aae02eef4934b6c7a674253c29f657c6b7bf /guides
parenta2de667b2eb97b387a9067277ab0829542f24841 (diff)
parenta2f034335d13824f30a956e55e60917f3599481e (diff)
downloadrails-8ad9670abb2d662df6fd0cf3b363fb5bf6a09de3.tar.gz
rails-8ad9670abb2d662df6fd0cf3b363fb5bf6a09de3.tar.bz2
rails-8ad9670abb2d662df6fd0cf3b363fb5bf6a09de3.zip
Merge pull request #24557 from y-yagi/update_example_to_specify_ac_mount_path
update example to specify the Action Cable mount path [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/action_cable_overview.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md
index d1f17fdce5..0c486bb96c 100644
--- a/guides/source/action_cable_overview.md
+++ b/guides/source/action_cable_overview.md
@@ -549,12 +549,13 @@ You can change that in `config/database.yml` through the `pool` attribute.
### In App
Action Cable can run alongside your Rails application. For example, to
-listen for WebSocket requests on `/websocket`, mount the server at that path:
+listen for WebSocket requests on `/websocket`, specify that path to
+`config.action_cable.mount_path`:
```ruby
-# config/routes.rb
-Example::Application.routes.draw do
- mount ActionCable.server => '/cable'
+# config/application.rb
+class Application < Rails::Application
+ config.action_cable.mount_path = '/websocket'
end
```